Hi All,
I am trying to check the req and ack timing. Where the range needs to be varied.
property req_ack_timing;
@(posedge clk)
$rose(req) |-> ##[0:num_clks] $rose(ack);
endproperty : req_ack_timing
Here, the num_clks changes during the run time. While compiling this, I get non-constant expression used.
Is there a way to check an assertion of a signal in a range which can change during run time?
Thanks,
Madhukar