Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1003 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 1003 Bytes

Chisel Project Template

Another version of the Chisel template supporting mill. mill is another Scala/Java build tool without obscure DSL like SBT. It is much faster than SBT.

Contents at a glance:

  • .gitignore - helps Git ignore junk like generated files, build products, and temporary files.
  • build.sc - instructs mill to build the Chisel project
  • Makefile - rules to call mill
  • data_set - Data set
  • playground/src/ - Chisel implementation of hardware modules
  • playground/dynamic/src/ - Dynamic scheduling
  • playground/static/src/ - Static scheduling

Feel free to rename or delete files under playground/ or use them as a reference/template.

Getting Started

First, install mill by referring to the documentation here.

To run all tests in this design (recommended for test-driven development):

make test

To generate Verilog:

make verilog