56. Control Flow Basics

Question.5

What does out evaluate to during simulation?

always @(*) begin
    casex (2'b1x)
        2'b11: out = 1;
        2'b10: out = 0;
        default: out = 1'bx;
    endcase
end

 

Need Help? Refer to the Quick Guide below

Select Answer