From 5c4d4db08d39673b98ce953f1ab1d1368eeb2f44 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 14 Sep 2017 19:09:52 +0200 Subject: Add icemulti example --- examples/icemulti/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 examples/icemulti/Makefile (limited to 'examples/icemulti/Makefile') diff --git a/examples/icemulti/Makefile b/examples/icemulti/Makefile new file mode 100644 index 0000000..d8a8320 --- /dev/null +++ b/examples/icemulti/Makefile @@ -0,0 +1,20 @@ +prog: config.bin + sudo iceprog config.bin + +sudo-prog: config.bin + @echo 'Executing prog as root!!!' + sudo iceprog config.bin + +config.bin: app0.bin app1.bin app2.bin app3.bin + icemulti -v -A16 -p0 -o config.bin app0.bin app1.bin app2.bin app3.bin + +app%.bin: app%.v icestick.pcf + yosys -p "synth_ice40 -top top -blif $(basename $<).blif" $< + arachne-pnr -o $(basename $<).asc -d 1k -P tq144 -p icestick.pcf $(basename $<).blif + icetime -d hx1k -c 25 $(basename $<).asc + icepack $(basename $<).asc $(basename $<).bin + +clean: + rm -f app?.asc app?.bin app?.blif config.bin + +.PHONY: prog sudo-prog clean -- cgit v1.2.3