diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-02-01 23:32:03 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-02-01 23:32:03 +0100 |
commit | 81c33a343ffce5eab897d0a5a7d228bfcb08aaf4 (patch) | |
tree | f1a95089b3c441b3895fc55612b5efc730b087bd /examples/icestick/Makefile | |
parent | 8b6116523bdd12b9376b4ed023fee6c62bb7a714 (diff) | |
download | icestorm-81c33a343ffce5eab897d0a5a7d228bfcb08aaf4.tar.gz icestorm-81c33a343ffce5eab897d0a5a7d228bfcb08aaf4.tar.bz2 icestorm-81c33a343ffce5eab897d0a5a7d228bfcb08aaf4.zip |
Timing models for LP and HX devices
Diffstat (limited to 'examples/icestick/Makefile')
-rw-r--r-- | examples/icestick/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/icestick/Makefile b/examples/icestick/Makefile index a2ecbc6..f40c8a3 100644 --- a/examples/icestick/Makefile +++ b/examples/icestick/Makefile @@ -1,6 +1,6 @@ PROJ = example PIN_DEF = icestick.pcf -DEVICE = 1k +DEVICE = hx1k all: $(PROJ).rpt $(PROJ).bin @@ -8,13 +8,13 @@ all: $(PROJ).rpt $(PROJ).bin yosys -p 'synth_ice40 -top top -blif $@' $< %.asc: $(PIN_DEF) %.blif - arachne-pnr -d $(DEVICE) -o $@ -p $^ + arachne-pnr -d $(subst hx,,$(subst lp,,$(DEVICE))) -o $@ -p $^ %.bin: %.asc icepack $< $@ %.rpt: %.asc - icetime -mtr $@ $< + icetime -d $(DEVICE) -mtr $@ $< prog: $(PROJ).bin iceprog $< |