mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-04 08:45:29 +02:00
- scoper item injection can no longer affect generate scoping - cast conversion injects functions into the top level when possible - cast conversion considers loop variables to be local - `else if` generate blocks are still scopes at the current level
8 lines
154 B
Verilog
8 lines
154 B
Verilog
module top;
|
|
wire [31:0] out1, out2, out3, out4;
|
|
mod #(1) m1(out1);
|
|
mod #(2) m2(out2);
|
|
mod #(3) m3(out3);
|
|
mod #(4) m4(out4);
|
|
endmodule
|