EI205 Lecture 3 Dianguang Ma Fall, 2008.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Chapter 3 Logic Gates.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals with PLD Programming.
CT455: Computer Organization Logic gate
Digital Logic & Design Dr. Waseem Ikram Lecture 06
L14: Boolean Logic and Basic Gates
CHAPTER 2 LOGIC GATES.
Logic Families and Their Characteristics
Chapter 3 Basic Logic Gates 1.
Digital Fundamentals CHAPTER 3 Logic Gates.
Chapter 4 Gates and Circuits.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd.
Gates A digital circuit is one in which only two logical values are present. Typically, a signal between 0 and 1 volt represents one value (e.g. binary.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd.
Chapter 2 Logic Functions and Gates. 2 Basic Logic Functions The three basic logic functions are: –AND –OR –NOT.
Chapter 4 Gates and Circuits.
Logical Circuit Design Week 5: Combinational Logic Circuits Mentor Hamiti, MSc Office ,
Electronic Troubleshooting Chapter 10 Digital Circuits.
Integrated Circuit Logic Families. Outline  Integrated Circuit Logic Families.
Chapter 3 (part 2) Basic Logic Gates 1.
Chapter 33 Basic Logic Gates. 2 Objectives –After completing this chapter, the student should be able to: Identify and explain the function of the basic.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Logic Gates Chapter 6 Subject: Digital System Year: 2009.
IC Logic Families Wen-Hung Liao, Ph.D.
CHAPTER 1 : INTRODUCTION
Logic Gates By Taweesak Reungpeerakul
CHAPTER 1 INTRODUCTION TO DIGITAL LOGIC
1 Logic Gates and Circuits  Logic Gates Logic Gates  The Inverter The Inverter  The AND Gate The AND Gate  The OR Gate The OR Gate  The NAND Gate.
Digital Fundamentals Floyd Chapter 3 Tenth Edition
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Logic Design Dr. Oliver Faust.
CH31 Chapter 3 Logic Gates By Taweesak Reungpeerakul.
ECE DIGITAL LOGIC LECTURE 5: BINARY LOGIC AND DIGITAL LOGIC GATES Assistant Prof. Fareena Saqib Florida Institute of Technology Fall 2016, 01/28/2016.
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. The Inverter AX.
Lecture No. 2 Computer Logic Design. Binary Digits The two state number system is called binary. Its two digits are 0 and 1 A binary digit is called a.
Chapter 33 Basic Logic Gates. Objectives After completing this chapter, you will be able to: –Identify and explain the function of the basic logic gates.
Logic Families.
Homework Reading Machine Projects Labs
Boolean Algebra & Logic Gates
Chapter 5 Combinational Logic 组合逻辑
LOGIC GATE TIMING DIAGRAM.
Digital Fundamentals Floyd Chapter 3 Tenth Edition
Engr. Micaela Renee Bernardo
Overview Part 1 – Logic Circuits and Boolean Functions
Logic Gates and Boolean Algebra
Digital Fundamentals Floyd Chapter 3 Tenth Edition
Introduction to Logic Gates
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
2-6 Exclusive-OR Operator and Gates
EI205 Lecture 5 Dianguang Ma Fall 2008.
PROPAGATION DELAY.
EI205 Lecture 15 Dianguang Ma Fall 2008.
Digital Signals Digital Signals have two basic states:
Principles & Applications
Dr. Clincy Professor of CS
CMOS circuits and Logic families
Lecture No. 7 Logic Gates Asalam O Aleikum students. I am Waseem Ikram. This is the seventh lecture in a series of 45 lectures on Digital Logic Design.
Digital Computer Electronics TTL
CSE221- Logic Design, Spring 2003 Logic Technology
Digital Electronics Lab 2 Instructor:
King Fahd University of Petroleum and Minerals
Digital Fundamentals Floyd Chapter 3 Tenth Edition
CS Chapter 3 (3A and ) Part 3 of 8
Logic Gates.
Chapter – 2 Logic Families.
Overview Part 3 – Additional Gates and Circuits
CS Chapter 3 (3A and ) – Part 2 of 5
Department of Electronics
Presentation transcript:

EI205 Lecture 3 Dianguang Ma Fall, 2008

Chapter 3 Logic Gates

3-1 THE INVERTER The inverter performs the operation called inversion or complementation. The inverter changes one logic level to the opposite level. In terms of bits, it changes a 1 to a 0 and a 0 to a 1. The negation indicator is a “bubble” . When appearing on the input/output, it means that a 0 is the active or asserted input/output state. The polarity indicator is a “triangle” . When appearing on the input/output, it means that a LOW level is the active or asserted input/output state.

The Inverter A truth table lists all input combinations with the corresponding output(s). The truth table for an inverter looks like this The operation of an inverter can be expressed as follows: if the input variable is called A and the output variable is called X, then The complemented variable can be read as “A bar” or “not A”.

3-2 THE AND GATE The AND gate produces a HIGH only when all of the inputs are HIGH. When any of the inputs is LOW, the output is LOW. The basic purpose of an AND gate is to determine when certain conditions are simultaneously true.

The truth table for a 2-input AND gate looks like this The AND Gate The truth table for a 2-input AND gate looks like this The operation of a 2-input AND gate can be expressed in equation form as follows: The product term can be read as “A ANDed with B”.

The AND Gate Boolean multiplication is the same as the AND function.

3-3 THE OR GATE The OR gate produces a LOW only when all of the inputs are LOW. When any of the inputs is HIGH, the output is HIGH. The basic purpose of an OR gate is to determine when one or more conditions are true.

The truth table for a 2-input OR gate looks like this The OR Gate The truth table for a 2-input OR gate looks like this The operation of a 2-input OR gate can be expressed in equation form as follows: The product term can be read as “A ORed with B”.

The OR Gate Boolean addition is the same as the OR function.

3-4 THE NAND GATE The NAND gate produces a LOW only when all of the inputs are HIGH. When any of the inputs is LOW, the output is HIGH. The term NAND is a contraction of NOT-AND and implies an AND function with a complemented (inverted) output.

The truth table for a 2-input NAND gate looks like this The NAND Gate The truth table for a 2-input NAND gate looks like this The operation of a 2-input NAND gate can be expressed in equation form as follows: The operation can be read as “A NANDed with B”.

3-5 THE NOR GATE The NOR gate produces a HIGH only when all of the inputs are LOW. When any of the inputs is HIGH, the output is LOW.

The truth table for a 2-input NOR gate looks like this The NOR Gate The truth table for a 2-input NOR gate looks like this The operation of a 2-input NOR gate can be expressed in equation form as follows: The operation can be read as “A NORed with B”.

3-6 THE EXCLUSIVE-OR AND EXCLUSIVE-NOR GATES The exclusive-OR (XOR) gate has only two inputs. The output of an XOR gate is HIGH only when two inputs are at opposite logic levels.

The truth table for an XOR gate looks like this The XOR and XNOR Gates The truth table for an XOR gate looks like this The operation of an XOR gate can be expressed in equation form as follows: The operation can be read as “A XORed with B”.

The XOR and XNOR gates The exclusive-NOR (XNOR) gate has only two inputs. The output of an XNOR gate is LOW only when two inputs are at opposite logic levels.

The truth table for an XNOR gate looks like this The XOR and XNOR Gates The truth table for an XNOR gate looks like this The operation of an XNOR gate can be expressed in equation form as follows: The operation can be read as “A XNORed with B”.

3-7 INTEGRATED CIRCUIT LOGIC GATES Modern digital systems use ICs almost exclusively in their designs because their small size, high reliability, low cost, and low power consumption. There are three digital IC technologies that are used to implement the basic logic gates. Two of these, CMOS (complementary metal-oxide semiconductor) and TTL (transistor-transistor logic), are the most widely used and the third, ECL (emitter-coupled logic), is used in more specialized applications. The logic operations of NOT, AND, OR, NAND, NOR, and XOR are the same regardless of the IC technology used. CMOS is implemented with a type of field-effect transistor. The two categories of CMOS in terms of DC supply voltage are the 5 V CMOS and the 3.3 V CMOS. Within each supply voltage category, several series of CMOS logic gates are available. TTL is implemented with bipolar junction transistors. All TTL logic gates operate from a 5 V dc supply.

74HC and 74HCT: High-speed CMOS 74AC and 74 ACT: Advanced CMOS CMOS Series The basic CMOS series for the 5 V category and their designations are as follows: 74HC and 74HCT: High-speed CMOS 74AC and 74 ACT: Advanced CMOS 74AHC and 74AHCT: Advanced High-speed CMOS The basic CMOS series for the 3.3 V category and their designations are as follows: 74LV: Low-voltage CMOS 74LVC: Low-voltage CMOS 74ALVC: Advanced Low-voltage CMOS In addition to the “pure” CMOS, there is a series that combines both CMOS and TTL called BiCMOS. The basic BiCMOS series and their designations are as follows: 74BCT: BiCMOS 74ABT: Advanced BiCOMS 74LVT: Low-voltage BiCMOS 74ALB: Advanced Low-voltage BiCMOS

TTL Series The basic TTL series and their designations are as follows: 74: standard TTL 74S: Schottky TTL 74AS: Advanced Schottky TTL 74LS: Low-power Schottky TTL 74ALS: Advanced Low-power Schottky TTL 74F: Fast TTL

IC Packages All of the 74 series CMOS are pin-compatible with the same types of devices in TTL. This means that a CMOS digital IC such as the 74AHC00 (quad 2-input NAND), which contains four 2-input NAND gates in one IC package, has the identical package pin numbers for each input and output as does the corresponding TTL device. Typical IC gate packages, the dual in-line package (DIP) for plug-in or feedthrough mounting and the small-outline integrated circuit (SOIC) package for surface mounting, are shown below:

Some of the Common Logic Gate Configurations The types of gate configurations typically available in IC packages are identified by the last two or three digits in the series designation.

Logic Symbols The logic symbols for digital ICs use the standard gate symbols and show the number of gates in the IC package and the associated pin numbers for each gate as well as the pin numbers for dc supply and ground.

Performance Characteristics and Parameters Propagation delay time DC supply voltage Power dissipation Input and output logic levels Speed-power product (SPP) Fan-out and loading

Performance Characteristics and Parameters Propagation delay time, tP, of a logic gate is the time interval between the application of an input pulse and the occurrence of the resulting output pulse. tPHL: The time between a specified reference point on the input pulse and a corresponding reference point on the resulting output pulse, with the output changing from the HIGH level to the LOW level (HL). tPLH: The time between a specified reference point on the input pulse and a corresponding reference point on the resulting output pulse, with the output changing from the LOW level to the HIGH level (LH).

Performance Characteristics and Parameters

HW 3 2, 10, 13, 34, 42, 43