feat(L02): add FPGA bring-up and programming card

This commit is contained in:
user
2026-07-21 18:58:00 +02:00
commit 48f3fb738b
44 changed files with 7302 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
VERILATOR ?= verilator
TASK ?= task01_pin_polarity
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 -- {} +