mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
- variable-size string parameter conversion restricted to modules which depend on the size of the string parameter - string localparams are typed as appropriately sized vectors - remove ordered parameter binding logic from string param conversion
5 lines
68 B
Verilog
5 lines
68 B
Verilog
module top;
|
|
mod #("FOO") m1();
|
|
mod #("BAR") m2();
|
|
endmodule
|