Prev Problem
Next Problem

73. SR Latch

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

Code

module sr_latch_nor (
    input  S,
    input  R,
    output Q,
    output Qn
);
   wire w1;
    and instance_(w1, S, ~R);
    nor instance1butwhatever(Qn, Q, w1);
    nor instance_0(Q, R, Qn);

    
endmodule
Was this helpful?
Upvote
Downvote