mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +02:00
interface and instance array support
- support for interface instance arrays - support for interface-using module instance arrays - support for modport array bindings - fix modport bindings shadowed in nested instances
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
interface Interface;
|
||||
logic x;
|
||||
endinterface
|
||||
|
||||
module top;
|
||||
Interface intfs[3:2][8:5]();
|
||||
for (genvar x = 2; x <= 3; x = x + 1)
|
||||
for (genvar y = 5; y <= 8; y = y + 1)
|
||||
assign intfs[x][y].x = '1;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user