Which gate, NAND or NOR is a better choice for making SR Flip Flop latch? Please, provide the reason too.
Asked
Active
Viewed 93 times
-4
-
I think it depends on your choice. Whether you want to implement the whole design on NAND logic or NOR logic. – User Jan 30 '21 at 10:14
-
2This looks like a school question without an attempt to solve. – K H Jan 30 '21 at 10:42
2 Answers
4
It depends on which one fits the application better.
NAND:
- inputs are active-low
- for the Q output, "set" has priority over "reset"
NOR:
- inputs are active-high
- for the Q output, "reset" has priority over "set"
Extra Credit
Some applications require a two-phase clock. What is the subtle, but important difference between the following two circuits?
simulate this circuit – Schematic created using CircuitLab

Dave Tweed
- 168,369
- 17
- 228
- 393
-
The question is about latches. How does one input have priority over the other? – Shashank V M Jan 30 '21 at 16:27
-
1@ShashankVM: In a NAND latch, if the "set" input is asserted (low), the Q output will be high regardless of the state of the "reset" input. However, in the NOR latch, asserting the "set" input (high) will be overridden if the "reset" input is also asserted, driving the Q output low. Sometimes this subtle difference is important in an application. – Dave Tweed Jan 30 '21 at 16:51
-
Thanks a lot for your reply, Mr. Dave Tweed. I am able to understand now. I did not know that Set has priority over Reset in a NAND latch and vice versa for a NOR latch. Other readers can read this https://electronics.stackexchange.com/a/323863/238188 – Shashank V M Jan 31 '21 at 04:43
1
Both ways are identical except that one is active high and the other is active low.

Paul Ghobril
- 2,896
- 1
- 9
- 17