We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfc4e12 commit 5a30434Copy full SHA for 5a30434
regression/verilog/SVA/sequence_implication1.desc
@@ -0,0 +1,10 @@
1
+KNOWNBUG
2
+sequence_implication1.sv
3
+--bound 20
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+The sequence implication operator does not pick up the end of the chain
10
+sequence on the left hand side.
regression/verilog/SVA/sequence_implication1.sv
@@ -0,0 +1,15 @@
+module main(input clk);
+
+ reg [31:0] counter = 0;
+ // 0 1 2 0 1 2 ...
+ always_ff @(posedge clk)
+ if(counter == 2)
+ counter = 0;
+ else
+ counter++;
11
12
+ // checks that 1 2 is followed by 0
13
+ assert property (@(posedge clk) counter == 1 ##1 counter == 2 |-> ##1 counter == 0);
14
15
+endmodule : main
0 commit comments