feat(L06): add control flow and program counter card

This commit is contained in:
user
2026-07-21 17:09:05 +02:00
commit 3eb73ea715
42 changed files with 7212 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
TASK ?= task01_branch_compare
.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 .stem/build/rtl -mindepth 1 -maxdepth 1 -type d -exec rm -r -- {} +