Assertion such that given 2 bit command can’t be equal to 2 more than 4 times within 60 clock cycles.
sequence sixty_cycles;
1'b1 ##60;
endsequence
sequence command;
(cmd==2'b10)[=5];
endsequence
property command_check;
always@(posedge clk) |-> not command within sixty_cycles;
endproperty
Is my solution correct?