40. Primitives

Question.7

When attempting to execute this code, what is the expected result?

module size_test(input [1:0] a, output y);
    wire [1:0] w;
    not u1(w, a);
    assign y = w[1];
endmodule

 

Need Help? Refer to the Quick Guide below

Select Answer