1
0
mirror of synced 2026-04-12 16:49:03 +00:00

Made examples/smtbmc/demo1.v more interesting

This commit is contained in:
Clifford Wolf
2016-09-02 13:54:24 +02:00
parent 948aac9e1e
commit 068d5bc02f

View File

@@ -9,7 +9,7 @@ module demo1(input clk, input addtwo, output iseven);
`ifdef FORMAL
assert property (cnt != 15);
initial assume (!cnt[3] && !cnt[0]);
initial assume (!cnt[2]);
`endif
endmodule