Hi all
I’m trying to assert that a signal remains low between two others signal
assert property (@(posedge clk) disable iff (!reset_n) (a |=> (!c) throughout (b [-> 1])))
this code doesn’t work because c is evaluated also when b = 1
Any kind of help will be appreciated.
Thanks