Skip to content

Commit b51e892

Browse files
committed
Two tests for SVA->Buechi->BDD
This adds two further tests for the SVA->Buechi->BDD flow.
1 parent 5f2c37e commit b51e892

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

regression/verilog/SVA/sequence_and2.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module main(input clk);
22

3-
reg [31:0] x = 0;
3+
reg [7:0] x = 0;
44

55
always @(posedge clk)
66
x<=x+1;

regression/verilog/SVA/sequence_or1.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module main(input clk);
22

3-
reg [31:0] x = 0;
3+
reg [7:0] x = 0;
44

55
always @(posedge clk)
66
x<=x+1;

0 commit comments

Comments
 (0)