Logic Gates Learning Objectives Learn that there is a one-to-one relationship between logic gates and Boolean expressions Learn how logic gates are combined.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Logic Gates.
CT455: Computer Organization Logic gate
ADDER, HALF ADDER & FULL ADDER
ECE 2373 Modern Digital System Design Exam 2. ECE 2372 Exam 2 Thursday March 5 You may use two 8 ½” x 11” pages of information, front and back, write.
Hardware Implementations Gates and Circuits. Three Main Gates  AND  OR  NOT.
08/07/041 CSE-221 Digital Logic Design (DLD) Lecture-8:
Part 2: DESIGN CIRCUIT. LOGIC CIRCUIT DESIGN x y z F F = x + y’z x y z F Truth Table Boolean Function.
In this module you will learn: What the various logic gates do. How to represent logic gates on a circuit diagram. The truth tables for the logic gates.
XOR, XNOR, and Binary Adders
Gates and Circuits Monday/Wednesday Week 7. Electronic Circuits  Two types of circuit diagrams See pp. 238 in The Analytical Engine by Decker and Hirshfield.
LOGIC GATES Logic generally has only 2 states, ON or OFF, represented by 1 or 0. Logic gates react to inputs in certain ways. Symbol for AND gate INPUT.
Binary Numbers.
Binary Addition CSC 103 September 17, 2007.
XOR and XNOR Logic Gates. XOR Function Output Y is TRUE if input A OR input B are TRUE Exclusively, else it is FALSE. Logic Symbol  Description  Truth.
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
ADDERS Half Adders Recall that the basic rules of binary addition are as indicated below in Table 2-9. A circuit known as the half-adder carries out these.
Lecture 9 Topics: –Combinational circuits Basic concepts Examples of typical combinational circuits –Half-adder –Full-adder –Ripple-Carry adder –Decoder.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
4. Computer Maths and Logic 4.2 Boolean Logic Logic Circuits.
Universal college of engineering & technology. .By Harsh Patel)
1 Ethics of Computing MONT 113G, Spring 2012 Session 5 Binary Addition.
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
1 GCSE Computing Binary Logic. GCSE Computing 2 Candidates should be able to understand and produce simple logic diagrams using the operations NOT, AND,
How does a Computer Add ? Logic Gates within chips: AND Gate A B Output OR Gate A B Output A B A B
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.
LOGIC CIRCUITLOGIC CIRCUIT. Goal To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations.
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.
Logic Gates Digital Logic Design. What is a logic gate? A switch with an output that will only turn on when inputs are in particular positions.
Dr.Ahmed Bayoumi Dr.Shady Elmashad
Combinational Circuits
ECE 3130 Digital Electronics and Design
Questions Describe the following gates
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Exclusive OR Gate.
Basic Logical Operations (Fascinating)
Combinational Circuits
Computer Architecture CST 250
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Summary Half-Adder Basic rules of binary addition are performed by a half adder, which has two binary inputs (A and B) and two binary outputs (Carry out.
XOR, XNOR, and Binary Adders
XOR, XNOR, & Binary Adders
Boolean Algebra.
ECE 301 – Digital Electronics
Week 7: Gates and Circuits: PART II
Logic Gates.
Digital Logic.
Logic Gates.
Logic Gates.
KS4 Electricity – Electronic systems
Adders and Subtractors
GCSE Computer Science – Logic Gates & Boolean Expressions
Digital Logic.
DIGITAL ELECTRONICS B.SC FY
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
Chapter 10.3 and 10.4: Combinatorial Circuits
Binary Logic.
XOR, XNOR, and Binary Adders
XOR Function Logic Symbol  Description  Truth Table 
Truth tables Mrs. Palmer.
Adder Circuits By: Asst Lec. Basma Nazar
Department of Electronics
XOR, XNOR, and Binary Adders
Introduction to Logic diagrams and truth tables
Logic Gates By: Asst Lec. Besma Nazar Nadhem
Introduction to Logic diagrams and truth tables
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

Logic Gates Learning Objectives Learn that there is a one-to-one relationship between logic gates and Boolean expressions Learn how logic gates are combined to build circuits within processors Learn how logic gates are used to evaluate Boolean expressions to produce a result. Learn how logic gates can be combined to create full systems Learn what full and half adders are.

Logic Gates Electronic circuits that perform the Boolean functions are called logic gates. Below are the symbols used in the diagrams representing these circuits.

Logic Gates Exclusive OR function – XOR Input AInput BOutput

Logic Gates NAND function NAND is a combination of the AND and NOT Function. Input AInput BOutput

Logic Gates NAND function This can be shortened using the NAND Symbol. Which would make our diagram look like this

Logic Gates NOR function This is basically a OR followed by a NOT. If any of the inputs is true then the output is false. Input AInput BOutput

Logic Gates NOR function This can be shortened using the NOR Symbol. Which would make our diagram look like this

Logic Gates Combined circuits. Take a look at the diagram below: Can you draw a truth table and a Boolean expression for it?

Logic Gates Draw a logic diagram for the following Boolean expressions in Spec Put your answer into Specification Journal 19 (1.3) Use logic.ly/demo/ to help you draw the diagrams

Logic Gates In the ALU (Arithmetic Logic unit) logic gates are used to add up numbers. For example 0+0 = = = = 0 carry the one. When we see above we notice that the sum is generated by an XOR gate and the carry is generated by an AND Gate. The carry can then be added as an additional input in order to create a full adder.

Logic Gates Task Using logic.ly create a half adder and a full adder. Add your diagram to Specification Journal 19. Answer questions 4 & 5 on page 263 of your text book.