From 044e0b10a345f85ae3d8a94dc29956511f3e12bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Stensg=C3=A5rd?= Date: Thu, 17 Apr 2025 21:29:40 +0200 Subject: uart_benchmark_3_megabaud: transmit U at pi's fastest rate --- uart_benchmark_3_megabaud/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 uart_benchmark_3_megabaud/Makefile (limited to 'uart_benchmark_3_megabaud/Makefile') diff --git a/uart_benchmark_3_megabaud/Makefile b/uart_benchmark_3_megabaud/Makefile new file mode 100644 index 0000000..1afafb7 --- /dev/null +++ b/uart_benchmark_3_megabaud/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 -- cgit v1.2.3