< Digital Circuits
A single NOR gate

Like NAND gates, NOR gates are so-called "universal gates" that can be combined to form any other kind of logic gate. For example, the, Apollo Guidance Computer, was built exclusively from NOR gates, about 5,600 in total for the later versions. Today, contrary to popular belief, integrated circuits are not constructed exclusively from a single type of gate. Instead, EDA tools are used to convert the description of a logical circuit to a netlist of complex gates (standard cells) or transistors (full custom approach).

Standard gates constructions with a NOR gates combination

NOR

A NOR gate is trivially made:

Desired GateNOR Construction
AB Q
001
010
100
110

NOT

This is made by joining the inputs of a NOR gate. As a NOR gate is equivalent to an OR gate leading to NOT gate, this automatically sees to the "OR" part of the NOR gate, eliminating it from consideration and leaving only the NOT part.

Desired GateNOR Construction
AQ
01
10

OR

The OR gate is simply a NOR gate followed by a NOT gate.

Desired GateNOR Construction
AB Q
000
011
101
111

AND

An AND gate gives a 1 output when both inputs are 1; a NOR gate gate gives a 1 output only when both inputs are 0. Therefore, an AND gate is made by inverting the inputs to a NOR gate.

Desired GateNOR Construction
AB Q
000
010
100
111

NAND

A NAND gate is made using an AND gate in series with a NOT gate:

Desired GateNOR Construction
AB Q
001
011
101
110

XNOR

An XNOR gate can be constructed from four NOR gates implementing the expression (A NOR N) NOR (B NOR N) where N = A NOR B. This construction entails a propagation delay three times that of a single NOR gate and uses four gates.

Desired GateNOR Construction
AB Q
001
010
100
111

Alternatively, an XNOR gate is made by considering the conjunctive normal form , noting from de Morgan's Law that a NOR gate is an inverted-input AND gate. This construction uses five gates instead of four.

Desired GateNOR Construction

XOR

An XOR gate is made by considering the conjunctive normal form , noting from de Morgan's Law that a NOR gate is an inverted-input AND gate. This construction entails a propagation delay three times that of a single NOR gate and uses five gates.

Desired GateNOR Construction
AB Q
000
011
101
110

Alternatively, the 4-gate version of the XNOR gate can be used with an inverter. This construction has a propagation delay four times (instead of three times) that of a single NOR gate.

Desired GateNOR Construction

See also

  • NAND Logic. Like NOR gates, NAND gates are also universal gates.

Digital Circuits

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.