mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
Specifically, support has been added for non-ANSI style port declarations where the port declaration is separate from the corresponding net or variable declaration.
5 lines
115 B
Systemverilog
5 lines
115 B
Systemverilog
// pattern: declared ports w, z are not in the port list of top
|
|
module top(x, y);
|
|
output w, x, y, z;
|
|
endmodule
|