Skip to content

Commit

Permalink
trace code
Browse files Browse the repository at this point in the history
  • Loading branch information
sashimi-yzh committed Apr 10, 2024
1 parent 99b9b60 commit b4f2410
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
*.*
*
!*/
!Makefile
!*.mk
!*.scala
!*.[cSh]
!*.v
!*.cpp
!*.cc
!.gitignore
!.scalafmt.conf
!build.sc
!README.md
build/

# mill
out/
.bsp/
.idea/
.idea_modules/
test_run_dir/

build/
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ test:
mill -i $(PRJ).test

verilog:
$(call git_commit, "generate verilog")
mkdir -p $(BUILD_DIR)
mill -i $(PRJ).runMain Elaborate -td $(BUILD_DIR)

Expand All @@ -22,3 +23,9 @@ clean:
-rm -rf $(BUILD_DIR)

.PHONY: test verilog help reformat checkformat clean

sim:
$(call git_commit, "sim RTL") # DO NOT REMOVE THIS LINE!!!
@echo "Write this Makefile by yourself."

-include ../Makefile

0 comments on commit b4f2410

Please sign in to comment.