mirror of
https://github.com/YosysHQ/yosys
synced 2026-01-20 01:03:21 +00:00
16 lines
224 B
Text
16 lines
224 B
Text
read_verilog -sv <<EOF
|
|
module top ();
|
|
always_comb begin
|
|
label1: cover(0);
|
|
label2: cover(0);
|
|
end
|
|
endmodule
|
|
EOF
|
|
|
|
hierarchy -top top
|
|
proc
|
|
chformal -lower
|
|
clean
|
|
opt_merge
|
|
select -assert-count 2 t:$cover
|
|
|