D
Deepu
Guest
Hi All,
Is there a way i can use assertion to check a condition like:
when posedge happens on signal A then check the value on signal B
changes to some other value after 43 ns. (clock cycle is 25ns)
I tried:
assert property ( @(posedge signalA) (signalB != 4'b0) |-> #43
(signalB == 4'b1111));
Can i try something like this? Which is the better way to use
assertion for this case.
Thanks..
Is there a way i can use assertion to check a condition like:
when posedge happens on signal A then check the value on signal B
changes to some other value after 43 ns. (clock cycle is 25ns)
I tried:
assert property ( @(posedge signalA) (signalB != 4'b0) |-> #43
(signalB == 4'b1111));
Can i try something like this? Which is the better way to use
assertion for this case.
Thanks..