additional interface conversion test coverage

This commit is contained in:
Zachary Snow
2020-12-11 12:41:20 -07:00
parent c5b066d5eb
commit 2311d3e2d6
17 changed files with 169 additions and 17 deletions
+15
View File
@@ -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