Lecture # 03 Chapter 03
Lecture # 03 Chapter 03
Fundamentals
Tenth Edition
Floyd
Chapter 3
The inverter performs the Boolean NOT operation. When the input is
LOW, the output is HIGH; when the input is HIGH, the output is LOW.
Input Output
A X
LOW (0) HIGH (1)
HIGH (1) LOW(0)
Example waveforms:
0 1 1 1 0 0 1 0
1’s complement
Outline
• 3-1 The Inverter
• 3-2 The AND Gate
• 3-3 The OR Gate
• 3-4 The NAND Gate
• 3-5 The NOR Gate
• 3-6 The Exclusive-OR and Exclusive-NOR Gates
• 3-7 Fixed Function Logic
• 3-8 Programmable Logic
The AND Gate A X
B
The AND gate produces a HIGH output when all inputs are HIGH;
otherwise, the output is LOW. For a 2-input gate, the truth table is
Inputs Output
A B X
0 0 0
0 1 0
1 0 0
1 1 1
The AND operation is usually shown with a dot between the variables
but it may be implied (no dot). Thus, the AND operation is written as X
= A .B or X = AB.
The AND Gate
A X
B
Example waveforms:
X
The AND operation is used in computer programming as a selective
mask. If you want to retain certain bits of a binary number but reset the
other bits to 0, you could set a mask with 1’s in the position of the
retained bits.
The OR gate produces a HIGH output if any input is HIGH; if all inputs
are LOW, the output is LOW. For a 2-input gate, the truth table is
Inputs Output
A B X
0 0 0
0 1 1
1 0 1
1 1 1
The OR operation is shown with a plus sign (+) between the variables.
Thus, the OR operation is written as X = A + B.
The OR Gate
A X
B
Example waveforms:
A
B
X
The OR operation can be used in computer programming to set certain
bits of a binary number to 1.
ASCII letters have a 1 in the bit 5 position for lower case letters
and a 0 in this position for capitals. (Bit positions are numbered
from right to left starting with 0.) What will be the result if you
OR an ASCII letter with the 8-bit mask 01000000?
ASCII
Inputs Output
A B X
0 0 1
0 1 1
1 0 1
1 1 0
The NAND operation is shown with a dot between the variables and an
overbar covering them. Thus, the NAND operation is written as
(Alternatively, .)
The NAND Gate
A X
B
Example waveforms:
A
B
X
Inputs Output
A B X
0 0 1
0 1 0
1 0 0
1 1 0
The NOR operation is shown with a plus sign (+) between the variables
and an overbar covering them. Thus, the NOR operation is written as .
The NOR Gate
A X
B
Example waveforms:
A
B
X
The NOR operation will produce a LOW if any input is HIGH.
+5.0 V
A
The LED will be on when any of B X
C
the four inputs are HIGH. D
The NOR Gate
Inputs Output
A B X
0 0 0
0 1 1
1 0 1
1 1 0
A
B
X
Notice that the XOR gate will produce a HIGH only when exactly one
input is HIGH.
If the A and B waveforms are both inverted for the above
waveforms, how is the output affected?
Inputs Output
A B X
0 0 1
0 1 0
1 0 0
1 1 1
Inputs Output
A B X
0 0 1
0 1 0
1 0 0
1 1 1
A
B
X
Notice that the XNOR gate will produce a HIGH when both inputs are the
same. This makes it useful for comparison functions.
If the A waveform is inverted but B remains the same, how is
the output affected?
Cannot be programmed
Two Major families:
- TTL: transistor-transistor logic
- CMOS: complementary metal-oxide semi-conductor (more prevalent)
- Examples:
0.335 – 0.334 in.
0.740 – 0.770 in. 14 13 12 11 10 9 8
14 13 12 11 10 9 8
1 2 3 4 5 6 7
1 2 3 4 5 6 7
Pin no.1 Lead no.1
identifiers identifier
14
1 14
1
74xx00 74xx27
74 series NAND gate device 74 series NOR gate device
Fixed Function Logic
1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7
GND GND GND GND
'00 ' 02 '04 '08
1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7
GND GND GND GND
'10 '11 '20 '21
1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7
GND GND GND GND
'27 '30 '32 '86
Fixed Function Logic
Data sheets include limits and conditions set by the manufacturer as well
as DC and AC characteristics. For example, some maximum ratings for a
74HC00A are:
MAXIMUM RATINGS
Symbol Parameter Value Unit
VCC DC Supply Voltage (Referenced to GND) – 0.5 to + 7.0 V V
V in DC InputVoltage (Referenced to GND) – 0.5 to VCC +0.5 V V
V out DC Output Voltage (Referenced to GND) – 0.5 to VCC +0.5 V V
I in DC Input Current, per pin ± 20 mA
Iout DC Output Current, per pin ± 25 mA
ICC DC Supply Current, VCC and GND pins ± 50 mA
PD Power Dissipation in Still Air, Plastic or Ceramic DIP † 750 mW
SOIC Package † 500
TSSOP Package † 450
Tstg Storage Temperature –65 to + 150 °C
TL Lead Temperature, 1 mm from Case for 10 Seconds °C
Plastic DIP, SOIC, or TSSOP Package 260
Ceramic DIP 300
Outline
• 3-1 The Inverter
• 3-2 The AND Gate
• 3-3 The OR Gate
• 3-4 The NAND Gate
• 3-5 The NOR Gate
• 3-6 The Exclusive-OR and Exclusive-NOR Gates
• 3-7 Fixed Function Logic
• 3-8 Programmable Logic
Programmable Logic
A A B B
In general, the required logic for a PLD is developed with the aid of a
computer. The logic can be entered using a Hardware Description
Language (HDL) such as VHDL. Logic can be specified to the HDL as
a text file, a schematic diagram, or a state diagram.
Programmable Logic
entity NandGate is
port(A, B: in bit;
LED: out bit);
end entity NandGate;
architecture GateBehavior of NandGate is
signal A, B: bit;
begin
X <= A nand B;
LED <= X;
end architecture GateBehavior;
Selected Key Terms
OR gate A logic gate that produces a HIGH output when one or more
inputs are HIGH.
NAND gate A logic gate that produces a LOW output only when all of its
inputs are HIGH.
NOR gate A logic gate that produces a LOW output when one or more
inputs are HIGH.
Exclusive-OR A logic gate that produces a HIGH output only when its two
gate inputs are at opposite levels.
Exclusive-NOR A logic gate that produces a LOW output only when its two
gate inputs are at opposite levels.