diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-10-23 21:08:36 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-10-23 21:08:36 +0200 |
commit | b862fd3f5f11797bc60178917993cadf784eeb1c (patch) | |
tree | 6ae967be8d7ec9e32aa17ea7756601b254f7c988 /icetime/Makefile | |
parent | d193e581d0b8dd26a53c4dcb19991cc9e7ef8f17 (diff) | |
download | icestorm-b862fd3f5f11797bc60178917993cadf784eeb1c.tar.gz icestorm-b862fd3f5f11797bc60178917993cadf784eeb1c.tar.bz2 icestorm-b862fd3f5f11797bc60178917993cadf784eeb1c.zip |
Progress in icetime
Diffstat (limited to 'icetime/Makefile')
-rw-r--r-- | icetime/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/icetime/Makefile b/icetime/Makefile index 9423f84..5d0ecee 100644 --- a/icetime/Makefile +++ b/icetime/Makefile @@ -17,13 +17,20 @@ uninstall: # View timing netlist: # yosys -qp 'read_verilog -lib cells.v; prep; show' test0_ref.v +# yosys -qp 'read_verilog -lib cells.v; prep; show' test0_out.v test0 test1 test2 test3 test4 test5 test6 test7 test8 test9: icetime - python3 mktest.py $@ + test -f $@_ref.v || python3 mktest.py $@ ./icetime -P tq144 -p $@.pcf $@.txt $@_out.v yosys $@.ys -mktest: test0 test1 test2 test3 test4 test5 test6 test7 test8 test9 +run0 run1 run2 run3 run4 run5 run6 run7 run8 run9: icetime + ./icetime -P tq144 -p $(subst run,test,$@).pcf $(subst run,test,$@).txt $(subst run,test,$@)_out.v + +show0 show1 show2 show3 show4 show5 show6 show7 show8 show9: + yosys -p ':equiv_purge; opt_clean -purge; show' $(subst show,test,$@).il + +test: test0 test1 test2 test3 test4 test5 test6 test7 test8 test9 clean: rm -f icetime |