aboutsummaryrefslogtreecommitdiffstats
path: root/btor.ys
diff options
context:
space:
mode:
authorAhmed Irfan <irfan@ubuntu.(none)>2014-01-17 19:32:35 +0100
committerAhmed Irfan <irfan@ubuntu.(none)>2014-01-17 19:32:35 +0100
commit9a689f33a56d4b351bab021989f79e9b19500c62 (patch)
tree98484f0a1bd98953c8aeed2d239ed9e7c226ec0c /btor.ys
parentfc3f2961be756c04ebf32f5540b4280e7bf90c86 (diff)
downloadyosys-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.ys13
1 files changed, 7 insertions, 6 deletions
diff --git a/btor.ys b/btor.ys
index 5293ed63b..65accc95c 100644
--- a/btor.ys
+++ b/btor.ys
@@ -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;;;