mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
9 lines
128 B
Verilog
9 lines
128 B
Verilog
module top;
|
|
wire [1:0] o1;
|
|
Test1 bar(o1);
|
|
wire o2;
|
|
Test2 test2(o2);
|
|
wire o3;
|
|
Test3 test3(o3);
|
|
endmodule
|