3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-07 06:44:06 +00:00
sby/tests/2props1trace.sby

23 lines
210 B
Plaintext

[options]
mode bmc
depth 1
expect fail
[engines]
smtbmc
[script]
read -sv top.sv
prep -top top
[file top.sv]
module top(
input foo,
input bar
);
always @(*) begin
assert (foo);
assert (bar);
end
endmodule