diff options
author | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-02-11 15:43:03 +0100 |
---|---|---|
committer | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-02-11 15:43:03 +0100 |
commit | 45e468114a270f738e9e8d913221c7e0aae03141 (patch) | |
tree | ecf2de091d2d1bd8aefc35d9a81e7dbc449459e9 | |
parent | 1d64b3e0084814774cb2a0eb5a9c99dbe1101bc2 (diff) | |
download | yosys-45e468114a270f738e9e8d913221c7e0aae03141.tar.gz yosys-45e468114a270f738e9e8d913221c7e0aae03141.tar.bz2 yosys-45e468114a270f738e9e8d913221c7e0aae03141.zip |
disabling splice command in the script
-rw-r--r-- | backends/btor/btor.ys | 4 | ||||
-rwxr-xr-x | backends/btor/verilog2btor.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/backends/btor/btor.ys b/backends/btor/btor.ys index e58db8a38..bcfd65cdd 100644 --- a/backends/btor/btor.ys +++ b/backends/btor/btor.ys @@ -1,5 +1,7 @@ proc; -opt; opt_const -mux_undef; splice; opt; +opt; opt_const -mux_undef; +#splice; +opt; rename -hide;;; #converting pmux to mux techmap -share_map pmux2mux.v;; diff --git a/backends/btor/verilog2btor.sh b/backends/btor/verilog2btor.sh index 6485b6db8..972b8dfbe 100755 --- a/backends/btor/verilog2btor.sh +++ b/backends/btor/verilog2btor.sh @@ -22,7 +22,9 @@ hierarchy -top $3; hierarchy -libdir $DIR; hierarchy -check; proc; -opt; opt_const -mux_undef; splice; opt; +opt; opt_const -mux_undef; +#splice; +opt; rename -hide;;; techmap -share_map pmux2mux.v;; memory_dff -wr_only; |