diff options
author | Martin Stensgård <mastensg@mastensg.net> | 2025-04-17 21:18:27 +0200 |
---|---|---|
committer | Martin Stensgård <mastensg@mastensg.net> | 2025-04-17 21:18:27 +0200 |
commit | e37b995f54bc922346bc9779558af732047b41d6 (patch) | |
tree | 29d8e39e4a2cb476755b33cde517fa0473063309 /uart_benchmark/Makefile | |
parent | 1a019c9bb56564e6c58d8c5641f4d0aaef01827b (diff) |
uart_benchmark: transmit U at 12 MBd
Diffstat (limited to 'uart_benchmark/Makefile')
-rw-r--r-- | uart_benchmark/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/uart_benchmark/Makefile b/uart_benchmark/Makefile new file mode 100644 index 0000000..1afafb7 --- /dev/null +++ b/uart_benchmark/Makefile @@ -0,0 +1,23 @@ +TOP = top + +all: check top.bin + +check: + verilator --lint-only --top $(TOP) top.v + +clean: + rm -f top.asc top.bin top.json + +load: all + iceprog top.bin + +.PHONY: all check clean load + +top.asc: top.json top.pcf + nextpnr-ice40 --hx1k --package tq144 --json top.json --pcf top.pcf --asc top.asc --top $(TOP) + +top.bin: top.asc + icepack top.asc top.bin + +top.json: top.v + yosys -q -p "synth_ice40 -json top.json -top $(TOP)" top.v |