sv2v/test/basic/interface_infer.v

9 lines
173 B
Coq
Raw Normal View History

module Module(input wire x);
initial $display("Module", x);
endmodule
module top;
wire i_x;
initial $display("Interface", i_x);
Module m(.x(i_x));
endmodule