diff options
author | Martin Stensgård <mastensg@mastensg.net> | 2025-03-22 19:07:57 +0100 |
---|---|---|
committer | Martin Stensgård <mastensg@mastensg.net> | 2025-03-22 19:07:57 +0100 |
commit | 4056f9bd21ae1981bad054f1c92fbff6ad2742ba (patch) | |
tree | 2e9d3fcb015290de8d3b7766c6a72daa6f651136 | |
parent | b7aeb9b06d8808134e5bc0062868255bded3348c (diff) |
example/Makefile: replace arachne-pnr with nextpnr
-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 |