3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-11 00:13:33 +00:00

Merge pull request from jix/fix_smt_shift

Regression test for 
This commit is contained in:
Jannis Harder 2022-08-03 17:04:10 +02:00 committed by GitHub
commit 8d2fa9b304
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,22 @@
[options]
mode cover
depth 36
[engines]
smtbmc boolector
[script]
read -formal top.sv
prep -top top
[file top.sv]
module top(input clk);
reg [33:0] bits = 0;
reg [5:0] counter = 0;
always @(posedge clk) begin
counter <= counter + 1;
bits[counter] <= 1;
cover (&bits);
end
endmodule