3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-09-03 18:18:10 +00:00

Revert "Remove asserts during cover mode"

This reverts commit 81873292c9.
This commit is contained in:
Krystine Sherwin 2025-07-02 17:59:46 +12:00
parent 81873292c9
commit 205245c827
No known key found for this signature in database
3 changed files with 2 additions and 5 deletions

View file

@ -8,9 +8,6 @@ cover: mode cover
bmc: mode bmc
bmc: depth 1
cover: expect pass
~cover: expect fail
[engines]
cover: btor btormc
btormc: btor btormc

View file

@ -3,7 +3,7 @@ module test (input CP, CN, input A, B, output reg XP, XN);
always @* begin
assume (A || B);
assume (!A || !B);
assert (A == B);
assert (A != B);
cover (counter == 3 && A);
cover (counter == 3 && B);
end