SlideShare a Scribd company logo
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Digital
Fundamentals
Tenth Edition
Floyd
Chapter 3
© 2008 Pearson Education
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
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.
Summary
Summary
The Inverter A X
Input
A X
Output
LOW (0) HIGH (1)
HIGH (1) LOW(0)
The NOT operation (complement) is shown with an overbar.
Thus, the Boolean expression for an inverter is X = A.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
The Inverter
Example waveforms:
A
X
A X
A group of inverters can be used to form the 1’s
complement of a binary number: Binary number
1’s complement
1 0 0 0 1 1 0 1
0 1 1 1 0 0 1 0
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
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
Summary
Summary
The AND Gate
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.
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
0
0
1
A
B
X &
A
B
X
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
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 AND Gate
A
B
X
B
00000011
If the binary number 10100011 is ANDed with
the mask 00001111, what is the result?
&
A
B
X
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
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
Summary
Summary
The OR Gate
The OR operation is shown with a plus sign (+) between the
variables. Thus, the OR operation is written as X = A + B.
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
1
1
1
A
B
X A
B
X
≥ 1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
X
The OR operation can be used in computer programming to set certain
bits of a binary number to 1.
The OR Gate
B
A
B
X A
B
X
≥ 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 00100000?
The resulting letter will be lower case.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
The NAND gate produces a LOW output when all inputs
are HIGH; otherwise, the output is HIGH. For a 2-input
gate, the truth table is
Summary
Summary
The NAND Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
1
1
0
A
B
X A
B
X
&
The NAND operation is shown with a dot between the
variables and an overbar covering them. Thus, the NAND
operation is written as X = A .
B (Alternatively, X = AB.)
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
X
The NAND gate is particularly useful because it is a
“universal” gate – all other basic gates can be constructed
from NAND gates.
The NAND Gate
B
How would you connect a 2-input NAND gate
to form a basic inverter?
A
B
X A
B
X
&
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
The NOR gate produces a LOW output if any input is
HIGH; if all inputs are HIGH, the output is LOW. For a
2-input gate, the truth table is
Summary
Summary
The NOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
0
0
0
A
B
X A
B
X
≥1
The NOR operation is shown with a plus sign (+) between
the variables and an overbar covering them. Thus, the NOR
operation is written as X = A + B.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
X
The NOR operation will produce a LOW if any input is HIGH.
The NOR Gate
B
When is the LED is ON for the circuit shown?
The LED will be on when any of
the four inputs are HIGH.
A
C
B
D
X
330W
+5.0 V
A
B
X A
B
X
≥1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
The XOR gate produces a HIGH output only when both
inputs are at opposite logic levels. The truth table is
Summary
Summary
The XOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
1
1
0
A
B
X A
B
X
= 1
The XOR operation is written as X = AB + AB.
Alternatively, it can be written with a circled plus sign
between the variables as X = A + B.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
X
Notice that the XOR gate will produce a HIGH only when exactly one
input is HIGH.
The XOR Gate
B
If the A and B waveforms are both inverted for the above
waveforms, how is the output affected?
There is no change in the output.
A
B
X A
B
X
= 1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
The XNOR gate produces a HIGH output only when both
inputs are at the same logic level. The truth table is
Summary
Summary
The XNOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
0
0
1
A
B
X A
B
X
The XNOR operation shown as X = AB + AB.
Alternatively, the XNOR operation can be shown with a
circled dot between the variables. Thus, it can be shown as X
= A .
B.
= 1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Summary
Summary
Example waveforms:
A
X
Notice that the XNOR gate will produce a HIGH when both inputs are the
same. This makes it useful for comparison functions.
The XNOR Gate
B
If the A waveform is inverted but B remains the same, how is
the output affected?
The output will be inverted.
A
B
X A
B
X
= 1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Two major fixed function logic families are TTL and CMOS.
A third technology is BiCMOS, which combines the first
two. Packaging for fixed function logic is shown.
Summary
Summary
Fixed Function Logic
14 13 12 1
1 10 9 8
1 2 3 4 5 6 7
0.335 – 0.334 in.
0.228 – 0.244 in.
Lead no.1
identifier
14 13 12 1
1 10 9 8
1 2 3 4 5 6 7
0.740 – 0.770 in.
0.250±0.010 in.
Pin no.1
identifiers
14
1
14
1
DIP package SOIC package
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
A dual in-line package (DIP) is an electronic device
package with a rectangular housing and two parallel rows of
electrical connecting pins. The package may be through-hole
mounted to a printed circuit board or inserted in a socket.
Summary
Summary
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
A small-outline integrated circuit (SOIC) is a surface-
mounted integrated circuit (IC) package which occupies an
area about 30–50% less than an equivalent DIP, with a
typical thickness that is 70% less. They are generally
available in the same pinouts as their counterpart DIP ICs.
Summary
Summary
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Some common gate configurations are shown.
Summary
Summary
Fixed Function Logic
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'00
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'04
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'08
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'02
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'10
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'11
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'20
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'21
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'27
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'32
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'86
14
1
8
7
9
6
10
5
11
4
12
3
13
2
VCC
GND
'30
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Logic symbols show the gates and associated pin numbers.
Summary
Summary
Fixed Function Logic
VCC
(13) (11)
(12)
(10)
(9)
(5)
(4)
(2)
(1)
(6)
(3)
(8)
(1)
(3)
(2)
(4)
(6)
(5)
(9)
(8)
(10)
(12)
(11)
(13)
(14)
(7)
GND
&
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
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:
Summary
Summary
Fixed Function Logic
Parameter Value Unit
Symbol
DC Supply Voltage (Referenced to GND) – 0.5 to + 7.0 V V
VCC
DC InputVoltage (Referenced to GND) –
–
0.5 to V +0.5 V V
CC
0.5 to V +0.5 V V
CC
Vin
DC Output Voltage (Referenced to GND)
Vout
DC Input Current, per pin ± 20 mA
I in
DC Output Current, per pin ± 25 mA
Iout
DC Supply Current, V and GND pins
CC ± 50 mA
ICC
Power Dissipation in StillAir, Plastic or Ceramic DIP † 750
500
450
mW
P
D
SOIC Package †
TSSOP Package †
Storage T
emperature °C
Tstg –65 to + 150
Lead T
emperature, 1 mm from Case for 10 Seconds °C
TL
260
300
Plastic DIP, SOIC, or TSSOP Package
Ceramic DIP
MAXIMUM RATINGS
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
A Programmable Logic Device (PLD) can be programmed
to implement logic. There are various technologies
available for PLDs. Many use an internal array of AND
gates to form logic terms. Many PLDs can be programmed
multiple times.
Summary
Summary
Programmable Logic
B
B
A
A
X= AB
SRAM
cell
SRAM
cell
SRAM
cell
SRAM
cell
SRAM
cell
SRAM
cell
SRAM
cell
SRAM
cell
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Selected Key Terms
Selected Key Terms
Inverter
Truth table
Timing
diagram
Boolean
algebra
AND gate
A logic circuit that inverts or complements its
inputs.
A table showing the inputs and corresponding
output(s) of a logic circuit.
A diagram of waveforms showing the proper time
relationship of all of the waveforms.
The mathematics of logic circuits.
A logic gate that produces a HIGH output only
when all of its inputs are HIGH.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Selected Key Terms
Selected Key Terms
OR gate
NAND gate
NOR gate
Exclusive-OR
gate
Exclusive-NOR
gate
A logic gate that produces a HIGH output when
one or more inputs are HIGH.
A logic gate that produces a LOW output only
when all of its inputs are HIGH.
A logic gate that produces a LOW output when one
or more inputs are HIGH.
A logic gate that produces a HIGH output only
when its two inputs are at opposite levels.
A logic gate that produces a LOW output only
when its two inputs are at opposite levels.
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
1. The truth table for a 2-input AND gate is
© 2008 Pearson Education
0 0
0 1
1 0
1 1
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
0
0
0
Inputs
A B X
Output
0 0
0 1
1 0
1 1
Inputs
A B X
Output
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
1
1
1
a. b.
c. d.
0
1
1
0
0
0
0
1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
2. The truth table for a 2-input NOR gate is
© 2008 Pearson Education
0 0
0 1
1 0
1 1
Inputs
A B X
Output
0 0
0 1
1 0
1 1
Inputs
A B X
Output
0 0
0 1
1 0
1 1
Inputs
A B X
Output
Inputs
A B X
Output
0 0
0 1
1 0
1 1
a. b.
c. d.
0
1
1
0
0
0
0
1
1
0
0
0
0
1
1
1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
3. The truth table for a 2-input XOR gate is
© 2008 Pearson Education
0 0
0 1
1 0
1 1
Inputs
A B X
Output
0 0
0 1
1 0
1 1
Inputs
A B X
Output
0 0
0 1
1 0
1 1
Inputs
A B X
Output
Inputs
A B X
Output
0 0
0 1
1 0
1 1
a. b.
c. d.
0
1
1
0
0
0
0
1
1
0
0
0
0
1
1
1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
4. The symbol is for a(n)
a. OR gate
b. AND gate
c. NOR gate
d. XOR gate
A
B
X
≥ 1
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
5. The symbol is for a(n)
a. OR gate
b. AND gate
c. NOR gate
d. XOR gate
A
B
X
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
6. A logic gate that produces a HIGH output only when
all of its inputs are HIGH is a(n)
a. OR gate
b. AND gate
c. NOR gate
d. NAND gate
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
7. The expression X = A + B means
a. A OR B
b. A AND B
c. A XOR B
d. A XNOR B
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
8. A 2-input gate produces the output shown. (X represents
the output.) This is a(n)
a. OR gate
b. AND gate
c. NOR gate
d. NAND gate
A
X
B
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
9. A 2-input gate produces a HIGH output only when the
inputs agree. This type of gate is a(n)
a. OR gate
b. AND gate
c. NOR gate
d. XNOR gate
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
© 2008 Pearson Education
10. The required logic for a PLD can be specified in an
Hardware Description Language by
a. text entry
b. schematic entry
c. state diagrams
d. all of the above
© 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved
Floyd, Digital Fundamentals, 10th
ed
Answers:
1. c
2. b
3. a
4. a
5. d
6. b
7. c
8. d
9. d
10. d

More Related Content

PDF
All About Boolean Algebra DLD.
PPTX
Digital fundamentals - Floyd, Chapter 1.pptx
PDF
Comparators in DLD.
PPTX
Multiplexer.pptx
PDF
FYBSC IT Digital Electronics Unit III Chapter II Arithmetic Circuits
PPTX
Compuertas Logicas
PPTX
Presentation on Flip Flop
PPTX
Combinational Logic Circuit
All About Boolean Algebra DLD.
Digital fundamentals - Floyd, Chapter 1.pptx
Comparators in DLD.
Multiplexer.pptx
FYBSC IT Digital Electronics Unit III Chapter II Arithmetic Circuits
Compuertas Logicas
Presentation on Flip Flop
Combinational Logic Circuit

What's hot (20)

PPT
Chapter 3 combining factors
PDF
CSEC Physics Review - Introduction To Logic Gates
PPTX
quine mc cluskey method
PPTX
mealy and moore machines
PPT
ch 3.ppt digital fundamentals loyd de ppt
PDF
MCS 012 computer organisation and assembly language programming assignment…
PPTX
Digital Electronics | Computer Science
PPTX
Carry look ahead adder
PPTX
direct coupled transistor logic
PDF
Verilog VHDL code Decoder and Encoder
PPTX
module1:Introduction to digital electronics
PPTX
Encoder and decoder
PPT
Encoder decoder
PPTX
Sequential logic circuits flip-flop pt 1
PDF
Discrete Structure
PPT
PPTX
Quine Mc Cluskey Method
PPT
Digital Fundamentals Chapter 1 Slide.ppt
PDF
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
PPTX
Mux decod pld2_vs2
Chapter 3 combining factors
CSEC Physics Review - Introduction To Logic Gates
quine mc cluskey method
mealy and moore machines
ch 3.ppt digital fundamentals loyd de ppt
MCS 012 computer organisation and assembly language programming assignment…
Digital Electronics | Computer Science
Carry look ahead adder
direct coupled transistor logic
Verilog VHDL code Decoder and Encoder
module1:Introduction to digital electronics
Encoder and decoder
Encoder decoder
Sequential logic circuits flip-flop pt 1
Discrete Structure
Quine Mc Cluskey Method
Digital Fundamentals Chapter 1 Slide.ppt
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
Mux decod pld2_vs2
Ad

Similar to Chapter 3- Digital Fundamentals by Thomas L. Floyd (20)

PPT
Chapter 7. Functions of Combinational Logic
PPT
Digital Logic Design
PDF
Pp05
PPTX
Combinational logic circuits design and implementation
PPTX
Lecture 04-Digital logic gates.pptx
PPT
9525.ppt
PPTX
4.Digital Logic Design (Topic 8,9,10 - Combinational logic).pptx
PPT
chapter six logic Combinational Full-adders
PPT
Digital Logic Design
PPT
Aeav 301 lec 19
PPTX
Digital logic
PDF
Find all hazards in this circuit. Redesign the circuit as a three-le.pdf
DOCX
Deld lab manual
PPTX
Chapter 3 part 1 .pptx
PDF
Logic Gates & Family.pdf
PPT
Digital Electronics Logic gates
PPTX
Logic Gates.pptx
PPT
8051 MMD Chapter 1.ppt
PPT
Chap 3
Chapter 7. Functions of Combinational Logic
Digital Logic Design
Pp05
Combinational logic circuits design and implementation
Lecture 04-Digital logic gates.pptx
9525.ppt
4.Digital Logic Design (Topic 8,9,10 - Combinational logic).pptx
chapter six logic Combinational Full-adders
Digital Logic Design
Aeav 301 lec 19
Digital logic
Find all hazards in this circuit. Redesign the circuit as a three-le.pdf
Deld lab manual
Chapter 3 part 1 .pptx
Logic Gates & Family.pdf
Digital Electronics Logic gates
Logic Gates.pptx
8051 MMD Chapter 1.ppt
Chap 3
Ad

Recently uploaded (20)

PPTX
Modelling in Business Intelligence , information system
PDF
Microsoft Core Cloud Services powerpoint
PPTX
Market Analysis -202507- Wind-Solar+Hybrid+Street+Lights+for+the+North+Amer...
PPTX
Pilar Kemerdekaan dan Identi Bangsa.pptx
PDF
[EN] Industrial Machine Downtime Prediction
PDF
Business Analytics and business intelligence.pdf
PDF
Lecture1 pattern recognition............
PDF
annual-report-2024-2025 original latest.
PPTX
modul_python (1).pptx for professional and student
PDF
Data Engineering Interview Questions & Answers Cloud Data Stacks (AWS, Azure,...
PPTX
climate analysis of Dhaka ,Banglades.pptx
PPTX
Database Infoormation System (DBIS).pptx
PPTX
AI Strategy room jwfjksfksfjsjsjsjsjfsjfsj
PPTX
mbdjdhjjodule 5-1 rhfhhfjtjjhafbrhfnfbbfnb
PDF
168300704-gasification-ppt.pdfhghhhsjsjhsuxush
PPT
Predictive modeling basics in data cleaning process
PPTX
A Complete Guide to Streamlining Business Processes
PPTX
importance of Data-Visualization-in-Data-Science. for mba studnts
PDF
REAL ILLUMINATI AGENT IN KAMPALA UGANDA CALL ON+256765750853/0705037305
PDF
Optimise Shopper Experiences with a Strong Data Estate.pdf
Modelling in Business Intelligence , information system
Microsoft Core Cloud Services powerpoint
Market Analysis -202507- Wind-Solar+Hybrid+Street+Lights+for+the+North+Amer...
Pilar Kemerdekaan dan Identi Bangsa.pptx
[EN] Industrial Machine Downtime Prediction
Business Analytics and business intelligence.pdf
Lecture1 pattern recognition............
annual-report-2024-2025 original latest.
modul_python (1).pptx for professional and student
Data Engineering Interview Questions & Answers Cloud Data Stacks (AWS, Azure,...
climate analysis of Dhaka ,Banglades.pptx
Database Infoormation System (DBIS).pptx
AI Strategy room jwfjksfksfjsjsjsjsjfsjfsj
mbdjdhjjodule 5-1 rhfhhfjtjjhafbrhfnfbbfnb
168300704-gasification-ppt.pdfhghhhsjsjhsuxush
Predictive modeling basics in data cleaning process
A Complete Guide to Streamlining Business Processes
importance of Data-Visualization-in-Data-Science. for mba studnts
REAL ILLUMINATI AGENT IN KAMPALA UGANDA CALL ON+256765750853/0705037305
Optimise Shopper Experiences with a Strong Data Estate.pdf

Chapter 3- Digital Fundamentals by Thomas L. Floyd

  • 1. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Digital Fundamentals Tenth Edition Floyd Chapter 3 © 2008 Pearson Education
  • 2. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 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. Summary Summary The Inverter A X Input A X Output LOW (0) HIGH (1) HIGH (1) LOW(0) The NOT operation (complement) is shown with an overbar. Thus, the Boolean expression for an inverter is X = A.
  • 3. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary The Inverter Example waveforms: A X A X A group of inverters can be used to form the 1’s complement of a binary number: Binary number 1’s complement 1 0 0 0 1 1 0 1 0 1 1 1 0 0 1 0
  • 4. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 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 Summary Summary The AND Gate 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. Inputs A B X Output 0 0 0 1 1 0 1 1 0 0 0 1 A B X & A B X
  • 5. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A 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 AND Gate A B X B 00000011 If the binary number 10100011 is ANDed with the mask 00001111, what is the result? & A B X
  • 6. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 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 Summary Summary The OR Gate The OR operation is shown with a plus sign (+) between the variables. Thus, the OR operation is written as X = A + B. Inputs A B X Output 0 0 0 1 1 0 1 1 0 1 1 1 A B X A B X ≥ 1
  • 7. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A X The OR operation can be used in computer programming to set certain bits of a binary number to 1. The OR Gate B A B X A B X ≥ 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 00100000? The resulting letter will be lower case.
  • 8. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed The NAND gate produces a LOW output when all inputs are HIGH; otherwise, the output is HIGH. For a 2-input gate, the truth table is Summary Summary The NAND Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 1 1 0 A B X A B X & The NAND operation is shown with a dot between the variables and an overbar covering them. Thus, the NAND operation is written as X = A . B (Alternatively, X = AB.)
  • 9. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A X The NAND gate is particularly useful because it is a “universal” gate – all other basic gates can be constructed from NAND gates. The NAND Gate B How would you connect a 2-input NAND gate to form a basic inverter? A B X A B X &
  • 10. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed The NOR gate produces a LOW output if any input is HIGH; if all inputs are HIGH, the output is LOW. For a 2-input gate, the truth table is Summary Summary The NOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 0 0 0 A B X A B X ≥1 The NOR operation is shown with a plus sign (+) between the variables and an overbar covering them. Thus, the NOR operation is written as X = A + B.
  • 11. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A X The NOR operation will produce a LOW if any input is HIGH. The NOR Gate B When is the LED is ON for the circuit shown? The LED will be on when any of the four inputs are HIGH. A C B D X 330W +5.0 V A B X A B X ≥1
  • 12. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed The XOR gate produces a HIGH output only when both inputs are at opposite logic levels. The truth table is Summary Summary The XOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 0 1 1 0 A B X A B X = 1 The XOR operation is written as X = AB + AB. Alternatively, it can be written with a circled plus sign between the variables as X = A + B.
  • 13. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A X Notice that the XOR gate will produce a HIGH only when exactly one input is HIGH. The XOR Gate B If the A and B waveforms are both inverted for the above waveforms, how is the output affected? There is no change in the output. A B X A B X = 1
  • 14. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed The XNOR gate produces a HIGH output only when both inputs are at the same logic level. The truth table is Summary Summary The XNOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 0 0 1 A B X A B X The XNOR operation shown as X = AB + AB. Alternatively, the XNOR operation can be shown with a circled dot between the variables. Thus, it can be shown as X = A . B. = 1
  • 15. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Summary Summary Example waveforms: A X Notice that the XNOR gate will produce a HIGH when both inputs are the same. This makes it useful for comparison functions. The XNOR Gate B If the A waveform is inverted but B remains the same, how is the output affected? The output will be inverted. A B X A B X = 1
  • 16. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Two major fixed function logic families are TTL and CMOS. A third technology is BiCMOS, which combines the first two. Packaging for fixed function logic is shown. Summary Summary Fixed Function Logic 14 13 12 1 1 10 9 8 1 2 3 4 5 6 7 0.335 – 0.334 in. 0.228 – 0.244 in. Lead no.1 identifier 14 13 12 1 1 10 9 8 1 2 3 4 5 6 7 0.740 – 0.770 in. 0.250±0.010 in. Pin no.1 identifiers 14 1 14 1 DIP package SOIC package
  • 17. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed A dual in-line package (DIP) is an electronic device package with a rectangular housing and two parallel rows of electrical connecting pins. The package may be through-hole mounted to a printed circuit board or inserted in a socket. Summary Summary
  • 18. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed A small-outline integrated circuit (SOIC) is a surface- mounted integrated circuit (IC) package which occupies an area about 30–50% less than an equivalent DIP, with a typical thickness that is 70% less. They are generally available in the same pinouts as their counterpart DIP ICs. Summary Summary
  • 19. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Some common gate configurations are shown. Summary Summary Fixed Function Logic 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '00 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '04 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '08 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '02 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '10 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '11 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '20 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '21 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '27 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '32 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '86 14 1 8 7 9 6 10 5 11 4 12 3 13 2 VCC GND '30
  • 20. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Logic symbols show the gates and associated pin numbers. Summary Summary Fixed Function Logic VCC (13) (11) (12) (10) (9) (5) (4) (2) (1) (6) (3) (8) (1) (3) (2) (4) (6) (5) (9) (8) (10) (12) (11) (13) (14) (7) GND &
  • 21. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 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: Summary Summary Fixed Function Logic Parameter Value Unit Symbol DC Supply Voltage (Referenced to GND) – 0.5 to + 7.0 V V VCC DC InputVoltage (Referenced to GND) – – 0.5 to V +0.5 V V CC 0.5 to V +0.5 V V CC Vin DC Output Voltage (Referenced to GND) Vout DC Input Current, per pin ± 20 mA I in DC Output Current, per pin ± 25 mA Iout DC Supply Current, V and GND pins CC ± 50 mA ICC Power Dissipation in StillAir, Plastic or Ceramic DIP † 750 500 450 mW P D SOIC Package † TSSOP Package † Storage T emperature °C Tstg –65 to + 150 Lead T emperature, 1 mm from Case for 10 Seconds °C TL 260 300 Plastic DIP, SOIC, or TSSOP Package Ceramic DIP MAXIMUM RATINGS
  • 22. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed A Programmable Logic Device (PLD) can be programmed to implement logic. There are various technologies available for PLDs. Many use an internal array of AND gates to form logic terms. Many PLDs can be programmed multiple times. Summary Summary Programmable Logic B B A A X= AB SRAM cell SRAM cell SRAM cell SRAM cell SRAM cell SRAM cell SRAM cell SRAM cell
  • 23. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Selected Key Terms Selected Key Terms Inverter Truth table Timing diagram Boolean algebra AND gate A logic circuit that inverts or complements its inputs. A table showing the inputs and corresponding output(s) of a logic circuit. A diagram of waveforms showing the proper time relationship of all of the waveforms. The mathematics of logic circuits. A logic gate that produces a HIGH output only when all of its inputs are HIGH.
  • 24. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Selected Key Terms Selected Key Terms OR gate NAND gate NOR gate Exclusive-OR gate Exclusive-NOR gate A logic gate that produces a HIGH output when one or more inputs are HIGH. A logic gate that produces a LOW output only when all of its inputs are HIGH. A logic gate that produces a LOW output when one or more inputs are HIGH. A logic gate that produces a HIGH output only when its two inputs are at opposite levels. A logic gate that produces a LOW output only when its two inputs are at opposite levels.
  • 25. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 1. The truth table for a 2-input AND gate is © 2008 Pearson Education 0 0 0 1 1 0 1 1 Inputs A B X Output 0 0 0 1 1 0 1 1 1 0 0 0 Inputs A B X Output 0 0 0 1 1 0 1 1 Inputs A B X Output Inputs A B X Output 0 0 0 1 1 0 1 1 0 1 1 1 a. b. c. d. 0 1 1 0 0 0 0 1
  • 26. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 2. The truth table for a 2-input NOR gate is © 2008 Pearson Education 0 0 0 1 1 0 1 1 Inputs A B X Output 0 0 0 1 1 0 1 1 Inputs A B X Output 0 0 0 1 1 0 1 1 Inputs A B X Output Inputs A B X Output 0 0 0 1 1 0 1 1 a. b. c. d. 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 1
  • 27. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed 3. The truth table for a 2-input XOR gate is © 2008 Pearson Education 0 0 0 1 1 0 1 1 Inputs A B X Output 0 0 0 1 1 0 1 1 Inputs A B X Output 0 0 0 1 1 0 1 1 Inputs A B X Output Inputs A B X Output 0 0 0 1 1 0 1 1 a. b. c. d. 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 1
  • 28. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 4. The symbol is for a(n) a. OR gate b. AND gate c. NOR gate d. XOR gate A B X ≥ 1
  • 29. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 5. The symbol is for a(n) a. OR gate b. AND gate c. NOR gate d. XOR gate A B X
  • 30. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 6. A logic gate that produces a HIGH output only when all of its inputs are HIGH is a(n) a. OR gate b. AND gate c. NOR gate d. NAND gate
  • 31. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 7. The expression X = A + B means a. A OR B b. A AND B c. A XOR B d. A XNOR B
  • 32. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 8. A 2-input gate produces the output shown. (X represents the output.) This is a(n) a. OR gate b. AND gate c. NOR gate d. NAND gate A X B
  • 33. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 9. A 2-input gate produces a HIGH output only when the inputs agree. This type of gate is a(n) a. OR gate b. AND gate c. NOR gate d. XNOR gate
  • 34. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed © 2008 Pearson Education 10. The required logic for a PLD can be specified in an Hardware Description Language by a. text entry b. schematic entry c. state diagrams d. all of the above
  • 35. © 2009 Pearson Education, Upper Saddle River, NJ 07458. All Rights Reserved Floyd, Digital Fundamentals, 10th ed Answers: 1. c 2. b 3. a 4. a 5. d 6. b 7. c 8. d 9. d 10. d