4–1 Gates Let’s examine the processing of the following six types of gates NOT AND OR XOR NAND NOR Typically, logic diagrams are black and white, and the.

Slides:



Advertisements
Similar presentations
Chapter 4 Gates and Circuits.
Advertisements

Chapter 4 Gates and Circuits Nell Dale • John Lewis.
Basic Logic Gates Discussion D5.1 Section Sections 13-3, 13-4.
Logic Gates.
Gates and Circuits Nell Dale & John Lewis (adaptation by Erin Chambers and Michael Goldwasser)
Chapter 4 Gates and Circuits.
Mengenal Gerbang Logika (Logic Gate)
CS 151 Digital Systems Design Lecture 11 NAND and XOR Implementations.
Basic Logic Gates and De Morgan's Theorem Discussion D5.1 Appendix D.
ENGIN112 L11: NAND and XOR Implementation September 26, 2003 ENGIN 112 Intro to Electrical and Computer Engineering Lecture 11 NAND and XOR Implementations.
Chapter 4 Gates and Circuits.
9/19/06 Hofstra University – Overview of Computer Science, CSC005 1 Chapter 4 Gates and Circuits.
9/19/06 Hofstra University – Overview of Computer Science, CSC005 1 Chapter 4 Gates and Circuits.
Logic Design Review – 1 Basic Gates Lecture L14.1 Verilog.
Basic Gates Verilog Discussion D5.2. Basic Gates NOT Gate AND Gate OR Gate XOR Gate NAND Gate NOR Gate XNOR Gate.
Lecture 3. Boolean Algebra, Logic Gates
Lecture 3. Boolean Algebra, Logic Gates Prof. Sin-Min Lee Department of Computer Science 2x.
Chapter 4 Gates and Circuits. 4–2 Chapter Goals Identify the basic gates and describe the behavior of each Describe how gates are implemented using transistors.
Chapter 4 Gates and Circuits.
Logical Circuit Design Week 5: Combinational Logic Circuits Mentor Hamiti, MSc Office ,
Chapter 4 Gates and Circuits. Integrated Circuits aka CHIPS What’s in this thing???? 4–2.
NOCTI Review Lesson 4 Objectives:
Fundamentals of IT UNIT-I OnlyforIPMCA. DIGITAL SIGNALS & LOGIC GATES Signals and data are classified as analog or digital. Analog refers to something.
CPS120: Introduction to Computer Science
Digital Logic Design Week 3
Week 6: Gates and Circuits: PART I READING: Chapter 4.
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.
Exclusive OR Gate. Logically, the exclusive OR (XOR) operation can be seen as either of the following operations:exclusive OR (XOR) 1. A AND NOT B OR.
Basic logic gates  AND gate:The truth table is given by A.BBA
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
Lecture 09 NAND and XOR Implementations. Overview °Developing NAND circuits °Two-level implementations Convert from AND/OR to NAND (again!) °Multi-level.
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
Chapter-3: BOOLEAN ALGEBRA & LOGIC GATES Analysis and logical design.
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
Logic Gates. A logic gate is an elementary building block of a digital circuit. Most logic gates have two inputs and one output. At any given moment,
CS151 Introduction to Digital Design Chapter 2: Combinational Logic Circuits 2-9 Exclusive-OR Operator and Gates 1Created by: Ms.Amany AlSaleh.
Basic Logic Gates By : Ashima Wadhwa Assistant Professor (giBS)
Logic Gates Chapter 5 Subject: Digital System Year: 2009.
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.
Digital electronics 4–1 Gates and Circuits SANJAYBHAI RAJGURU COLLEGE OF ENGG.
4–1. BSCS 5 th Semester Introduction Logic diagram: a graphical representation of a circuit –Each type of gate is represented by a specific graphical.
L OGIC G ATES Computer Organization – week 3. W HAT ’ S ALU? 1. ALU stands for: Arithmetic Logic Unit 2. ALU is a digital circuit that performs Arithmetic.
Week 1: Introduction and Logic gates IT3002 – Computer Architecture
Basics of Logic gates - Part 1
Dr. Ameria Eldosoky Discrete mathematics
Dr.Ahmed Bayoumi Dr.Shady Elmashad
CSIS-110 Introduction to Computer Science
Exclusive OR Gate.
Discussion D5.1 Section Sections 13-3, 13-4
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Chapter 4 Gates and Circuits.
Agenda – 2/12/18 Questions? Readings: CSI 4, P
Logic Gates.
Logic Gates.
KS4 Electricity – Electronic systems
Discussion D5.1 Section Sections 13-3, 13-4
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
Logic Gates.
Discussion D5.1 Section Sections 13-3, 13-4
Basic Logic Gates.
Chapter 4 Gates and Circuits.
Chapter 2 Gates.
Basic Logic Gates.
Introduction to Logic diagrams and truth tables
Introduction to Logic diagrams and truth tables
What are Logic Gates?.
Presentation transcript:

4–1 Gates Let’s examine the processing of the following six types of gates NOT AND OR XOR NAND NOR Typically, logic diagrams are black and white, and the gates are distinguished only by their shape

NOT Gate -- Inverter X Y

4–3 NOT Gate By definition, if the input value for a NOT gate is 0, the output value is 1, and if the input value is 1, the output is 0 A NOT gate is sometimes referred to as an inverter because it inverts the input value

AND Gate AND X Y Z Z = X & Y X Y Z

4–5 AND Gate An AND gate accepts two input signals If the two input values for an AND gate are both 1, the output is 1; otherwise, the output is 0 Figure 4.2 Various representations of an AND gate

OR Gate OR X Y Z Z = X | Y X Y Z

4–7 OR Gate If the two input values are both 0, the output value is 0; otherwise, the output is 1 Figure 4.3 Various representations of a OR gate

NAND Gate NAND X Y Z X Y Z Z = ~(X & Y) nand(Z,X,Y)

NOR Gate NOR X Y Z X Y Z Z = ~(X | Y) nor(Z,X,Y)

NAND and NOR Gates The NAND and NOR gates are essentially the opposite of the AND and OR gates, respectively Figure 4.5 Various representations of a NAND gate Figure 4.6 Various representations of a NOR gate

Exclusive-OR Gate X Y Z XOR X Y Z Z = X ^ Y xor(Z,X,Y)

4–12 XOR Gate XOR, or exclusive OR, gate An XOR gate produces 0 if its two inputs are the same, and a 1 otherwise Note the difference between the XOR gate and the OR gate; they differ only in one input situation When both input signals are 1, the OR gate produces a 1 and the XOR produces a 0

4–13 XOR Gate Figure 4.4 Various representations of an XOR gate

Exclusive-NOR Gate X Y Z XNOR X Y Z Z = ~(X ^ Y) Z = X ~^ Y xnor(Z,X,Y)