40. Primitives

Question.4

What is the resolved logic state of y when en = 1 and when en = 0?

module pull_test(input en, output y);
    pullup p1 (y);
    bufif1 b1 (y, 1'b0, en);
endmodule

 

Need Help? Refer to the Quick Guide below

Select Answer