mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-07 11:51:28 +02:00
keep explicitly unconnected port bindings
These are now kept while still supporting optional trailing commas and without introducing pass-through inconsistencies.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// pattern: illegal mix of ordered and named port connections
|
||||
module example(
|
||||
input a, b, c
|
||||
);
|
||||
endmodule
|
||||
module top;
|
||||
wire a, b, c;
|
||||
example e(.a(1), .b(2), ,);
|
||||
endmodule
|
||||
Reference in New Issue
Block a user