Logic gate
A logic gate is an arrangement of electronically-controlled switches used to calculate operations in Boolean algebra. Logic gates can also be constructed from relays, fluidics and optical elements. Nikola Tesla first filed the patents on an electromechanical AND logic gate in 1899. Claude E. Shannon introduced the use of Boolean algebra in the analysis and design of switching cicuits in 1937. Walther Bothe, inventor of the coincidence circuit, got part of the 1954 Nobel prize in physics, for the first electronic AND gate in 1924.
| Table of contents |
|
2 Logic gates built from relays and switches 3 Electronic logic gates 4 Storage of bits 5 Miscellaneous 6 See also 7 References |
Electronic switching circuits are practical implementations of the abstract Boolean ideas. The first step in understanding a practical circuit is to establish the relationship between the abstract concepts of one and zero (or whatever names are given to the two states) and how they are represented in the real, analog, circuit. They are usually represented as a difference in voltage, but are also sometimes represented by differences in current flow, as used, for instance, in the switch examples below.
The reference point for the measurement must be specified, most usually a shared ground point, or a difference between two voltages. In the case of a shared ground, for instance, the ranges of allowed voltages must be specified. In the RS-232 standard for instance, the ranges are -15 to -3 volts, and +3 to +15 volts.
Then the polarity of the logic must be established. For instance, in a voltage representation the most common convention is positive logic, where the more positive voltage level is taken to represent a logical one. Transistor-transistor logic (TTL) and CMOS logic use this convention. However, the aforementioned RS-232 standard uses negative logic.
Using NOT gates, also called inverters, allows us to make alternate versions of the AND and OR gates, by virtue of DeMorgan's Law. Note that the layout of the switches in the two circuits is swapped when we turn the switches "backwards". Also note how the output of the first pair controls the operation of the NOT gate.
This may seem like an unnecessary complication, but in fact this is very useful. By removing the NOT gate from these alternate circuits, we create the so-called NAND (for NOT-AND) and NOR (for NOT-OR) gates.
The preceding simple logic gates can be combined to form more complicated boolean logic circuits. Logic circuits are often classified in two groups: combinatorial logic, in which the outputs are continuous-time functions of the inputs, and sequential logic, in which the outputs depend on information stored by the circuit as well as on the inputs.
The simplest form of electronic logic is diode logic (DL). This allows AND and OR gates to be built, but not inverters, and so is an incomplete form of logic. To built a complete logic system, valves or transistors can be used. The simplest family of logic gates using bipolar transistors is called resistor-transistor logic, or RTL. Unlike diode logic gates, RTL gates can be cascaded indefinitely to produce more complex logic functions. These gates were used in early integrated circuits. For higher speed, the resistors used in RTL were replaced by diodes, leading to diode-transistor logic, or DTL. It was then discovered that one transistor could do the job of two diodes in the space of one diode, so transistor-transistor logic, or TTL, was created. In some types of chip, to reduce size and power consumption still further, the bipolar transistors were replaced with complementary field-effect transistors (MOSFETs), resulting in complementary metal-oxide-semiconductor (CMOS) logic.
For small-scale logic, designers now use prefabricated logic gates from families of devices such as the TTL 7400 series invented by Texas Instruments and the CMOS 4000 series invented by RCA, and their more recent descendants. These devices usually contain transistors with multiple emitters, used to implement the AND function, which are not available as separate components. Increasingly, these fixed-function logic gates are being replaced by programmable logic devices, which allow designers to pack a huge number of mixed logic gates into a single integrated circuit.
Electronic logic gates differ significantly from their relay-and-switch equivalents. They are much faster, consume much less power, and are much smaller (all by a factor of a million or more in most cases). Also, there is a fundamental structural difference. The switch circuit creates a continuous metallic path for current to flow (in either direction) between its input and its output. The semiconductor logic gate, on the other hand, acts as a high-gain voltage amplifier, which sinks a tiny current at its input and produces a low-impedance voltage at its output. It is not possible for current to flow between the output and the input of a semiconductor logic gate.
Another important advantage of standardised semiconductor logic gates, such as the 7400 and 4000 families, is that they are cascadable. This means that the output of one gate can be wired to the inputs of one or several other gates, and so on ad infinitum, enabling the construction of circuits of arbitrary complexity without requiring the designer to understand the internal workings of the gates.
In practice, the output of one gate can only drive a finite number of inputs to other gates, a number called the 'fanout limit', but this limit is rarely reached in real circuits. Also, there is always a delay, called the 'propagation delay', from a change an input of a gate to the corresponding change in its output. When gates are cascaded, the total propagation delay is approximately the sum of the individual delays, an effect which can become a problem in high-speed circuits.
The US symbol for an AND gate is:
The US circuit symbol for an OR gate is:
The US circuit symbol for a NOT gate is:
In electronics a NOT gate is more commonly called an inverter. The circle on the symbol is called a bubble, and is generally used in circuit diagrams to indicate an inverted input or output.
The US circuit symbol for a NAND gate is:
The US circuit symbol for a NOR gate is:
In practice, the cheapest gate to manufacture is usually the NAND gate. Additionally, Charles Peirce showed that NAND gates alone (as well as NOR gates alone) can be used to reproduce all the other logic gates.
Two more gates are the exclusive-OR or XOR function and its inverse, exclusive-NOR or XNOR. Exclusive-OR is true only when exactly one of its inputs is true. In practice, these gates are built from combinations of simpler logic gates.
The US circuit symbol for an XOR gate is:
The US circuit symbol for an XNOR gate is:
Related to the concept of logic gates (and also built from them) is the idea of storing a bit of information. The gates discussed up to here cannot store a value: when the inputs change, the outputs immediately react. It is possible to make a storage element either through a capacitor (which stores charge due to its physical properties) or by feedback. Connecting the output of a gate to the input causes it to be put through the logic again, and choosing the feedback correctly allows it to be preserved or modified through the use of other inputs. A set of gates arranged in this fashion is known as a "latch", and more complicated designs that utilise clocks (signals that oscillate with a known period) and change only on the rising edge are called edge-triggered "flip-flops". The combination of multiple flip-flops in parallel, to store a multiple-bit value, is known as a register.
These registers or capacitor-based circuits are known as computer memory. Thet vary in performance, based on factors of speed, complexity, and reliability of storage, and many different types of designs are used based on the application.
Logic circuits include such devices as multiplexers, registers, ALUs, and computer memory, all the way up through complete microprocessors which can contain more than a million gates. In practice, the gates are made from field effect transistors (FETs), particularly metal-oxide-semiconductor FETs (MOSFETs).
In reversible logic, Toffoli gates are used.
Switching circuits
Logic gates built from relays and switches
Logic gates can be built from relays and switches. While semiconductor electronic logic (see later) is preferred in most applications, relays and switches are still used in some industrial applications and for educational purposes. In this article, the various types of logic gate are illustrated with drawings of their relay-and-switch implementations, although the reader should remember that these are electrically different from the semiconductor equivalents that are discussed later.
INPUT
OUTPUT
A
B
A AND B
0
0
0
1
0
0
0
1
0
1
1
1

INPUT
OUTPUT
A
B
A OR B
0
0
0
1
0
1
0
1
1
1
1
1

INPUT
OUTPUT
A
NOT A
0
1
1
0


Electronic logic gates
and the IEC symbol is
.
and the IEC symbol is:
.
and the IEC symbol is:
.
and the IEC symbol is:
.
and the IEC symbol is:
.
and the IEC symbol is:
.
Storage of bits
Miscellaneous
See also
References