Files

13 lines
211 B
Verilog
Raw Permalink Normal View History

2020-08-08 20:43:47 -06:00
module ModuleC;
wire y;
assign y = 1;
initial $display("ModuleB %b", y);
wire x;
assign x = 0;
initial $display("ModuleA %b", x);
endmodule
module top;
ModuleC module_c();
endmodule