You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seemed strange to me, so I added a coverage check
cov_possable: cover property ((~|c & y));
and indeed, this is uncoverable. So simply replacing that procedural block with assign next_counter = c-y; will lead to better hardware implementation.
The text was updated successfully, but these errors were encountered:
In
stoch_add.sv
you have, essentiallyassign y = c >= 1;
But then in the comb block, you have
if (~|c & y) next_counter ...
This seemed strange to me, so I added a coverage check
cov_possable: cover property ((~|c & y));
and indeed, this is uncoverable. So simply replacing that procedural block with
assign next_counter = c-y;
will lead to better hardware implementation.The text was updated successfully, but these errors were encountered: