Prev Problem
Next Problem

46. Operators - I

Question.1

If a is 0 and b is 1 right before the clock edge, what are their values immediately after the clock edge?

always @(posedge clk) begin
    a <= b;
    b <= a;
end

 

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!