Question.9
If sel steps seamlessly exactly to 2'b11, what occurs to y in strictly hardware?
sel
2'b11
y
always @(*) begin case(sel) 2'b00: y = a; 2'b01: y = b; 2'b10: y = c; endcase end
Select Answer
Unintentional continuous Latch Inference
Evaluates actively to x cleanly
x
Compiles successfully directly assigning 0
0
Compiler Error