feat(L03): add blinker and synchronous logic card

This commit is contained in:
user
2026-07-21 16:47:33 +02:00
commit 0a130e4eae
42 changed files with 7514 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
VERILATOR ?= verilator
TASK ?= task01_clock_enable
BUILD_ROOT ?= .stem/build/rtl
.PHONY: build test run trace clean
build:
@tests/test_rtl.sh --build-only "$(TASK)"
test:
@tests/test_rtl.sh "$(TASK)"
run: test
trace:
@tests/test_rtl.sh --trace "$(TASK)"
clean:
@find "$(BUILD_ROOT)" -mindepth 1 -maxdepth 1 -type d -exec rm -r -- {} +