mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-08 04:43:20 +02:00
additional interface conversion test coverage
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
module Module(x);
|
||||
input wire x;
|
||||
initial $display("Hello!");
|
||||
initial #1 $display(x);
|
||||
endmodule
|
||||
|
||||
module top;
|
||||
generate
|
||||
if (1) begin
|
||||
wire x;
|
||||
Module m1(x);
|
||||
Module m2(x);
|
||||
end
|
||||
endgenerate
|
||||
endmodule
|
||||
Reference in New Issue
Block a user