56. Control Flow Basics

Question.1

What is the resolved value of out during simulation?

reg out;
always @(*) begin
    if (3'b101 < 3'b1x0) out = 1;
    else                 out = 0;
end

 

Need Help? Refer to the Quick Guide below

Select Answer