diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-10-10 15:16:45 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-10-10 15:16:45 +0200 |
commit | 12c10892e6783e0a1ef52776c232dd342745543f (patch) | |
tree | 52482dfe8d609403b743698116e889599a5f19db /examples | |
parent | c10e96c9ec8c4e56935ba796af0fa3d1f22b2a71 (diff) | |
parent | 7c57d8fbb44cdc466f4e384528109ada7e52b4c1 (diff) | |
download | yosys-12c10892e6783e0a1ef52776c232dd342745543f.tar.gz yosys-12c10892e6783e0a1ef52776c232dd342745543f.tar.bz2 yosys-12c10892e6783e0a1ef52776c232dd342745543f.zip |
Merge branch 'master' of github.com:cliffordwolf/yosys
Diffstat (limited to 'examples')
-rw-r--r-- | examples/osu035/Makefile | 2 | ||||
-rw-r--r-- | examples/osu035/example.constr | 2 | ||||
-rw-r--r-- | examples/osu035/example.ys | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/examples/osu035/Makefile b/examples/osu035/Makefile index 8d8e247e3..2bb8162b3 100644 --- a/examples/osu035/Makefile +++ b/examples/osu035/Makefile @@ -1,5 +1,5 @@ -example.edif: example.ys example.v osu035_stdcells.lib +example.edif: example.ys example.v example.constr osu035_stdcells.lib yosys -l example.yslog -q example.ys osu035_stdcells.lib: diff --git a/examples/osu035/example.constr b/examples/osu035/example.constr new file mode 100644 index 000000000..eb2c6e8d5 --- /dev/null +++ b/examples/osu035/example.constr @@ -0,0 +1,2 @@ +set_driving_cell INVX1 +set_load 0.015 diff --git a/examples/osu035/example.ys b/examples/osu035/example.ys index 040f776a6..6821ef426 100644 --- a/examples/osu035/example.ys +++ b/examples/osu035/example.ys @@ -4,7 +4,7 @@ read_liberty -lib osu035_stdcells.lib synth -top top dfflibmap -liberty osu035_stdcells.lib -abc -liberty osu035_stdcells.lib +abc -D 10000 -constr example.constr -liberty osu035_stdcells.lib opt_clean stat -liberty osu035_stdcells.lib |