diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-01-24 15:43:42 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-01-24 15:43:42 +0100 |
commit | d8300d1fb8a0c2643b1a3c5b7df3bae0f7a08701 (patch) | |
tree | 392c9940f961fe0063cef5a5eaf78f0ab6a1f7e9 /btor.ys | |
parent | 0b47d907d36842e0971dd038b5fb6093ca303a8a (diff) | |
parent | 761b8f99d71128fbcf193ded7b59184811199324 (diff) | |
download | yosys-d8300d1fb8a0c2643b1a3c5b7df3bae0f7a08701.tar.gz yosys-d8300d1fb8a0c2643b1a3c5b7df3bae0f7a08701.tar.bz2 yosys-d8300d1fb8a0c2643b1a3c5b7df3bae0f7a08701.zip |
Merge branch 'btor' of https://github.com/ahmedirfan1983/yosys into btor
Diffstat (limited to 'btor.ys')
-rw-r--r-- | btor.ys | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/btor.ys b/btor.ys new file mode 100644 index 000000000..7f3882b57 --- /dev/null +++ b/btor.ys @@ -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;;; + |