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
[Verif] Always add clock trigger to HasBeenReset process (#9212)
Always add a `posedge clock` trigger to the always process created for
`verif.has_been_reset` operations, even if the reset is asynchronous.
Until now we would emit an `always @(posedge reset)` process, which some
EDA tools do not process properly. With this commit, we produce
`always @(posedge clock, posedge reset)` for asynchronous HBR ops, and
`always @(posedge clock)` for synchronous HBR ops.
0 commit comments