Saturday 4 July 2015

Flipflops and Latches- SR Latch


SR LATCH
module SR_latch_gate (input R, input S, output Q, output Qbar);
nor (Q, R, Qbar);
nor (Qbar, S, Q);
endmodule

No comments:

Post a Comment