diff options
Diffstat (limited to 'example/Makefile')
-rw-r--r-- | example/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/example/Makefile b/example/Makefile new file mode 100644 index 0000000..a55ea4c --- /dev/null +++ b/example/Makefile @@ -0,0 +1,11 @@ + +rot.bin: rot.v rot.pcf + yosys -q -p "synth_ice40 -blif rot.blif" rot.v + arachne-pnr -p rot.pcf rot.blif -o rot.txt + icebox_explain rot.txt > rot.ex + icepack rot.txt rot.bin + ./ice4pi_prog rot.bin +# iceprog rot.bin + +clean: + rm -f rot.blif rot.txt rot.ex rot.bin |