mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
16 lines
227 B
Plaintext
16 lines
227 B
Plaintext
read_verilog -sv <<EOF
|
|
module top;
|
|
logic [4:0] x;
|
|
logic z;
|
|
assign z = 1'b1;
|
|
always_comb begin : foo
|
|
x = '0;
|
|
if (z) begin : bar
|
|
for (int i = 0; i < 5; i++)
|
|
x[i] = 1'b1;
|
|
end
|
|
end
|
|
endmodule
|
|
EOF
|
|
proc
|