Draw the circuit represented by the following Verilog process: always @(clk,clr) begin if(clr == 1'b1) Q

Question:

Draw the circuit represented by the following Verilog process:
always @(clk,clr)
begin
if(clr == 1'b1)
Q <= 1'b0;
else if(clk == 1'b0 && CE == 1'b1)
begin
if(C == 1'b0)
Q <= A & B;
else
Q <= A | B;
end
end
Why is clr on the sensitivity list whereas C is not?

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Digital Systems Design Using Verilog

ISBN: 978-1285051079

1st edition

Authors: Charles Roth, Lizy K. John, Byeong Kil Lee

Question Posted: