diff options
| author | myrtle <gatecat@ds0.me> | 2022-09-15 12:37:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-15 12:37:29 +0200 |
| commit | a545498d6fd0a28a006976293917115037d4628c (patch) | |
| tree | dcb5191f0f33237ae561bfad064bd20fc397e728 /examples/icemulti/Makefile | |
| parent | 2bc541743ada3542c6da36a50e66303b9cbd2059 (diff) | |
| parent | ca43729f124466b816f922842353feeb3f6f8e84 (diff) | |
Merge pull request #302 from YosysHQ/aki/rm_arachne
Replaced instances of `arachne-pnr` with the `nextpnr-ice40` equivalent
Diffstat (limited to 'examples/icemulti/Makefile')
| -rw-r--r-- | examples/icemulti/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/icemulti/Makefile b/examples/icemulti/Makefile index d8a8320..a7ce692 100644 --- a/examples/icemulti/Makefile +++ b/examples/icemulti/Makefile @@ -9,12 +9,12 @@ 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 + yosys -p "synth_ice40 -top top -json $(basename $<).json" $< + nextpnr-ice40 --hx1k --package tq144 --asc $(basename $<).asc --pcf icestick.pcf --json $(basename $<).json icetime -d hx1k -c 25 $(basename $<).asc icepack $(basename $<).asc $(basename $<).bin clean: - rm -f app?.asc app?.bin app?.blif config.bin + rm -f app?.asc app?.bin app?.json config.bin .PHONY: prog sudo-prog clean |
