3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00
sby/tests/unsorted/cover_unreachable.sby
Jannis Harder 6d3b5aa960 Unified trace generation using yosys's sim across all engines
Currently opt-in using the `fst` or `vcd_sim` options.
2023-01-10 18:42:26 +01:00

35 lines
468 B
Plaintext

[tasks]
btormc
smtbmc
[options]
mode cover
expect fail
[engines]
btormc: btor btormc
smtbmc: smtbmc
[script]
read -formal top.sv
prep -top top -flatten
[file top.sv]
module top(input clk);
inner inner(clk);
endmodule
module inner(input clk);
reg [7:0] counter = 0;
always @(posedge clk) begin
counter <= counter == 4 ? 0 : counter + 1;
reachable: cover (counter == 3);
unreachable: cover (counter == 5);
end
endmodule