mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
- support for interface instance arrays - support for interface-using module instance arrays - support for modport array bindings - fix modport bindings shadowed in nested instances
12 lines
283 B
Verilog
12 lines
283 B
Verilog
module top;
|
|
generate
|
|
if (1) begin : block
|
|
wire [3:2][8:5] xs;
|
|
genvar x, y;
|
|
for (x = 2; x <= 3; x = x + 1)
|
|
for (y = 5; y <= 8; y = y + 1)
|
|
assign xs[x][y] = 1'b1;
|
|
end
|
|
endgenerate
|
|
endmodule
|