diff options
author | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-17 19:32:35 +0100 |
---|---|---|
committer | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-17 19:32:35 +0100 |
commit | 9a689f33a56d4b351bab021989f79e9b19500c62 (patch) | |
tree | 98484f0a1bd98953c8aeed2d239ed9e7c226ec0c /btor.ys | |
parent | fc3f2961be756c04ebf32f5540b4280e7bf90c86 (diff) | |
download | yosys-9a689f33a56d4b351bab021989f79e9b19500c62.tar.gz yosys-9a689f33a56d4b351bab021989f79e9b19500c62.tar.bz2 yosys-9a689f33a56d4b351bab021989f79e9b19500c62.zip |
verilog default options pull
shift operator width issues
Diffstat (limited to 'btor.ys')
-rw-r--r-- | btor.ys | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,4 +1,6 @@ #design should be loaded before executing +#set the: hierarchy -top <module_top> +#set the: hierarchy -libdir <dir> #high level synthesis ################# @@ -7,13 +9,12 @@ proc; opt; opt_const -mux_undef; opt; rename -hide;;; #converting pmux to mux -techmap -map techlibs/common/pmux2mux.v; -opt; -#converting asyn memory write to syn memory -memory_dff; -opt; +techmap -map techlibs/common/pmux2mux.v;; +memory -nomap;; #flatten design -flatten;;; +flatten;; +#converting asyn memory write to syn memory +memory_unpack; #cell output to be a single wire splitnets -driver; opt;;; |