yosys/tests/various/bug3462.ys

13 lines
183 B
Plaintext
Raw Normal View History

2022-08-29 03:10:09 -05:00
read_verilog <<EOT
module top();
wire array[0:0];
wire out;
sub #(.d(1)) inst(
.in(array[0]),
.out(out)
);
endmodule
EOT
hierarchy -top top -libdir .