yosys/tests/opt/opt_rmdff.ys

33 lines
794 B
Plaintext
Raw Normal View History

2019-05-23 13:26:38 -05:00
read_verilog -icells opt_rmdff.v
prep
design -stash gold
2019-05-23 13:26:38 -05:00
read_verilog -icells opt_rmdff.v
2019-05-24 20:32:02 -05:00
proc
2020-07-14 17:58:07 -05:00
opt_dff
2019-05-23 13:26:38 -05:00
select -assert-count 0 c:remove*
select -assert-min 7 c:keep*
2019-05-24 20:33:18 -05:00
select -assert-count 0 t:$dffe 7:$_DFFE_* %u c:noenable* %i
2019-05-23 13:26:38 -05:00
design -stash gate
design -import gold -as gold
design -import gate -as gate
cd gold
# fix up the "EN is don't care" cases, so that the gold output can't
# become defined by using the properties of an undefined enable. (Both
# remove6 and remove15 have active-low enables.)
connect -port remove6 EN 1'b1
connect -port remove15 E 1'b1
cd ..
clk2fflogic
opt_clean
miter -equiv -ignore_gold_x -make_assert -make_outputs -make_outcmp -flatten gold gate miter
hierarchy -top miter
2019-05-23 13:26:38 -05:00
sat -verify -prove-asserts -enable_undef -set-init-undef -seq 10 -show-public miter