3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-11 00:13:33 +00:00

add testcase exposing

This commit is contained in:
N. Engelhardt 2022-01-12 11:06:05 +01:00
parent 5a04ac3fcc
commit ad07ea0e85

24
tests/multi_assert.sby Normal file
View file

@ -0,0 +1,24 @@
[tasks]
btormc
pono
[options]
mode bmc
depth 5
expect fail
[engines]
btormc: btor btormc
pono: btor pono
[script]
read_verilog -sv multi_assert.v
prep -top test
[file multi_assert.v]
module test();
always @* begin
assert (1);
assert (0);
end
endmodule