diff options
-rw-r--r-- | example/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/Makefile b/example/Makefile index 2bc5d99..5f30689 100644 --- a/example/Makefile +++ b/example/Makefile @@ -1,6 +1,6 @@ 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 + yosys -q -p "synth_ice40 -json rot.json" rot.v + nextpnr-ice40 --hx1k --package tq144 --json rot.json --pcf rot.pcf --asc rot.txt icebox_explain rot.txt > rot.ex icepack rot.txt rot.bin @@ -9,4 +9,4 @@ load: rot.bin # iceprog rot.bin clean: - rm -f rot.blif rot.txt rot.ex rot.bin + rm -f rot.json rot.txt rot.ex rot.bin |