feat(L05): add ALU assembler and execute card

This commit is contained in:
user
2026-07-21 16:59:44 +02:00
commit ba7346f3e5
42 changed files with 7188 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
TASK ?= task01_alu_core
.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 -- {} +