aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-01-01 15:08:41 +0100
committerClifford Wolf <clifford@clifford.at>2016-01-01 15:08:41 +0100
commit804e47d8ff5651b579f6c43fcb96b569e0cbcdc5 (patch)
tree797ba1afb5713951983b937133dd7ad5128f5ab8 /examples
parented545ce4ce569bb96b2cba017daf2731afdaa926 (diff)
downloadicestorm-804e47d8ff5651b579f6c43fcb96b569e0cbcdc5.tar.gz
icestorm-804e47d8ff5651b579f6c43fcb96b569e0cbcdc5.tar.bz2
icestorm-804e47d8ff5651b579f6c43fcb96b569e0cbcdc5.zip
Renamed IceBox .txt files to .asc files
Diffstat (limited to 'examples')
-rw-r--r--examples/hx8kboard/Makefile6
-rw-r--r--examples/icestick/Makefile6
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/hx8kboard/Makefile b/examples/hx8kboard/Makefile
index e9fd789..9795cdf 100644
--- a/examples/hx8kboard/Makefile
+++ b/examples/hx8kboard/Makefile
@@ -7,10 +7,10 @@ all: $(PROJ).bin
%.blif: %.v
yosys -p 'synth_ice40 -top top -blif $@' $<
-%.txt: $(PIN_DEF) %.blif
+%.asc: $(PIN_DEF) %.blif
arachne-pnr -d $(DEVICE) -o $@ -p $^
-%.bin: %.txt
+%.bin: %.asc
icepack $< $@
prog: $(PROJ).bin
@@ -21,6 +21,6 @@ sudo-prog: $(PROJ).bin
sudo iceprog $<
clean:
- rm -f $(PROJ).blif $(PROJ).txt $(PROJ).bin
+ rm -f $(PROJ).blif $(PROJ).asc $(PROJ).bin
.PHONY: all prog clean
diff --git a/examples/icestick/Makefile b/examples/icestick/Makefile
index eaed6f7..06a5633 100644
--- a/examples/icestick/Makefile
+++ b/examples/icestick/Makefile
@@ -7,10 +7,10 @@ all: $(PROJ).bin
%.blif: %.v
yosys -p 'synth_ice40 -top top -blif $@' $<
-%.txt: $(PIN_DEF) %.blif
+%.asc: $(PIN_DEF) %.blif
arachne-pnr -d $(DEVICE) -o $@ -p $^
-%.bin: %.txt
+%.bin: %.asc
icepack $< $@
prog: $(PROJ).bin
@@ -21,6 +21,6 @@ sudo-prog: $(PROJ).bin
iceprog $<
clean:
- rm -f $(PROJ).blif $(PROJ).txt $(PROJ).bin
+ rm -f $(PROJ).blif $(PROJ).asc $(PROJ).bin
.PHONY: all prog clean