2019-09-10 00:08:03 -05:00
|
|
|
read_verilog adffs.v
|
|
|
|
proc
|
|
|
|
flatten
|
2019-09-17 03:53:49 -05:00
|
|
|
equiv_opt -multiclock -assert -map +/xilinx/cells_sim.v synth_xilinx # equivalency check
|
2019-09-10 00:08:03 -05:00
|
|
|
design -load postopt # load the post-opt design (otherwise equiv_opt loads the pre-opt design)
|
|
|
|
cd top # Constrain all select calls below inside the top module
|
|
|
|
|
|
|
|
select -assert-count 1 t:BUFG
|
2019-09-17 03:53:49 -05:00
|
|
|
select -assert-count 2 t:FDCE
|
|
|
|
select -assert-count 1 t:FDRE
|
2019-09-10 00:08:03 -05:00
|
|
|
select -assert-count 1 t:FDRE_1
|
2019-09-17 03:53:49 -05:00
|
|
|
select -assert-count 1 t:LUT1
|
|
|
|
select -assert-count 2 t:LUT2
|
|
|
|
select -assert-none t:BUFG t:FDCE t:FDRE t:FDRE_1 t:LUT1 t:LUT2 %% t:* %D
|