mirror of https://github.com/YosysHQ/yosys.git
17 lines
224 B
Plaintext
17 lines
224 B
Plaintext
|
|
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
|
||
|
|
|