In reply to Srini @ CVCblr.com:
For a one bit counter the following assert property code is correct one r not?
spec:
- reset is active low
- synchronous counter.
property counter_1bit;
@(posedge clk)
$fell(reset)|-> $fell(count);
endproperty: counter_1bit
onebit_counter: assert property(counter_1bit);