2019-11-19 11:19:00 +01:00
|
|
|
read_verilog ../common/fsm.v
|
|
|
|
|
hierarchy -top fsm
|
|
|
|
|
proc
|
|
|
|
|
flatten
|
|
|
|
|
|
2021-05-15 15:34:48 +02:00
|
|
|
equiv_opt -run :prove -map +/intel_alm/common/alm_sim.v -map +/intel_alm/common/dff_sim.v synth_intel_alm -family cyclonev -noiopad -noclkbuf
|
2019-11-19 11:19:00 +01:00
|
|
|
async2sync
|
|
|
|
|
miter -equiv -make_assert -flatten gold gate miter
|
|
|
|
|
sat -verify -prove-asserts -show-public -set-at 1 in_reset 1 -seq 20 -prove-skip 1 miter
|
|
|
|
|
|
|
|
|
|
design -load postopt # load the post-opt design (otherwise equiv_opt loads the pre-opt design)
|
|
|
|
|
cd fsm # Constrain all select calls below inside the top module
|
|
|
|
|
|
|
|
|
|
select -assert-count 6 t:MISTRAL_FF
|
2020-07-20 23:19:51 +02:00
|
|
|
select -assert-max 1 t:MISTRAL_NOT
|
2019-11-19 11:19:00 +01:00
|
|
|
select -assert-max 2 t:MISTRAL_ALUT2 # Clang returns 2, GCC returns 1
|
2020-07-20 23:19:51 +02:00
|
|
|
select -assert-max 1 t:MISTRAL_ALUT3
|
|
|
|
|
select -assert-max 2 t:MISTRAL_ALUT4 # Clang returns 0, GCC returns 1
|
2020-07-01 03:31:34 +02:00
|
|
|
select -assert-max 6 t:MISTRAL_ALUT5 # Clang returns 5, GCC returns 4
|
2020-05-27 21:49:16 +02:00
|
|
|
select -assert-max 2 t:MISTRAL_ALUT6 # Clang returns 1, GCC returns 2
|
2020-07-20 23:19:51 +02:00
|
|
|
select -assert-none t:MISTRAL_FF t:MISTRAL_NOT t:MISTRAL_ALUT2 t:MISTRAL_ALUT3 t:MISTRAL_ALUT4 t:MISTRAL_ALUT5 t:MISTRAL_ALUT6 %% t:* %D
|
2020-07-05 19:53:14 +02:00
|
|
|
|