Posted by VE on Oct 27, 2020
SystemVerilog Hi Forum, what is difference bwt below two properties, I see the results are same. module test; bit a, b, en, clk; initial begin forever #5 clk = ~clk; end assert property (@(posedge clk) en |-> a within (b [->1])); //line 10 //assert ...
Question