Question.4
Which Verilog module definition correctly implements the given RTL schematic?
Select Answer
module top(input top_in, output top_out); modA u1; assign top_out = u1.w; assign u1.a = top_in; endmodule
module top(input top_in, output top_out); assign top_out = modA(top_in); endmodule
module top(input top_in, output top_out); modA(.a(top_in), .w(top_out)); endmodule
module top(input top_in, output top_out); wire intern; modA u1(.a(top_in), .w(intern)); assign top_out = intern; endmodule