In reply to PatilAkshay:
Hello, PatilAkshay.
Try to use SystemVerilog method $fell() instead. For example:
assert_check_after_reset : assert property(
@(posedge clk)
$fell(reset) |-> (datain == 0)
);
Best regards, Maksim.
In reply to PatilAkshay:
Hello, PatilAkshay.
Try to use SystemVerilog method $fell() instead. For example:
assert_check_after_reset : assert property(
@(posedge clk)
$fell(reset) |-> (datain == 0)
);
Best regards, Maksim.