3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-11 05:30:53 +00:00

Moved btor scripts to backends/btor/

This commit is contained in:
Clifford Wolf 2014-01-24 15:48:07 +01:00
parent da26bb4378
commit 6804edd5d4
2 changed files with 0 additions and 0 deletions

15
backends/btor/btor.ys Normal file
View file

@ -0,0 +1,15 @@
proc;
opt; opt_const -mux_undef; opt;
rename -hide;;;
#converting pmux to mux
techmap -map techlibs/common/pmux2mux.v;;
memory -nomap;;
#flatten design
flatten;;
#converting asyn memory write to syn memory
memory_unpack;
#cell output to be a single wire
splitnets -driver;
setundef -zero -undriven;
opt;;;