feat(L09): add load and store semantics card

This commit is contained in:
user
2026-07-21 17:26:16 +02:00
commit 4f5fd8f64e
42 changed files with 7289 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
TASK ?= task01_store_lanes
.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 -- {} +