40. Primitives

Question.5

What happens when this module is passed through a standard RTL synthesizer?

module test_conflict(input a, output y);
    wire w;
    assign w = 1'b1;
    buf u1(w, a);
    assign y = w;
endmodule

 

Need Help? Refer to the Quick Guide below

Select Answer