DAT2343 Basic Logic Gates © Alan T. Pinck / Algonquin College; 2003.

Slides:



Advertisements
Similar presentations
Truth Tables and Logic Gates. What are Logic Gates? Logic gates are components used in making logic circuits. Each gate has one or more inputs and produces.
Advertisements

Chapter 4 Gates and Circuits.
ENGIN112 L7: More Logic Functions September 17, 2003 ENGIN 112 Intro to Electrical and Computer Engineering Lecture 7 More Logic Functions: NAND, NOR,
CT455: Computer Organization Logic gate
Programmable Logic Controllers.
ADDER, HALF ADDER & FULL ADDER
Give qualifications of instructors: DAP
CDA 3100 Recitation Week 10.
Sahar Mosleh PageCalifornia State University San Marcos 1 Introductory Concepts This section of the course introduces the concept of digital circuits and.
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
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 a not gate, if the input is on(1) the output is off (0) and vice versa.
1 Survey of Computer Science CSCI 110, Spring 2011 Lecture 16 Digital Circuits, binary Numbers.
Boolean math is the cornerstone of digital communications, whether you are talking computers, PLC, or Cisco Routers on the Internet. ©Emil Decker, 2009.
Engineering Lecture 3 Digital Electronics by Jaroslaw Karcz.
MR. KERINS Logic Gates- Electrical Engineering. LOGIC GATES Logic gates are primarily implemented using diodes or transistors acting as electronic switches,
Module 3.  Binary logic consists of :  logic variables  designated by alphabet letters, e.g. A, B, C… x, y, z, etc.  have ONLY 2 possible values:
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.
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.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
Introduction to Computer Science David Goldschmidt, Ph.D. Computer Science The College of Saint Rose CIS September 6, 2007.
Logic Gates How Boolean logic is implemented. Transistors used as switches to implement Boolean logic: ANDOR Logic with Transistors.
 In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Islamic University Of Gaza, Nael Aburas Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas
Gates and Logic Dr John Cowell phones off (please)
Linear Algebra. Circuits The circuits in computers and other input devices have inputs, each of which is either a 0 or 1, the output is also 0s and 1s.
CHAPTER-2 Fundamentals of Digital Logic. Digital Logic Digital electronic circuits are used to build computer hardware as well as other products (digital.
Universal college of engineering & technology. .By Harsh Patel)
ITEC 352 Lecture 3 Low level components(2). Low-level components Review Electricity Transistors Gates Really simple circuit.
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
Digital electronics 4–1 Gates and Circuits SANJAYBHAI RAJGURU COLLEGE OF ENGG.
LOGIC CIRCUITLOGIC CIRCUIT. Goal To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations.
 A transistor is the basic building block of electronic components.  The average computer may have millions of them within its circuits.  Essentially,
Logic Gates Review. Logic Gates OR gate – 1 if either input is 1 – 0 if they both are 0.
Logic gates.
Computer Architecture & Operations I
GCSE OCR Computing A451 Binary logic Computing hardware 6.
Creating logic gates with Minecraft
Component 1 Logical operators.
Logic Gates.
Transistors and Logic Circuits
VLSI System Design Lecture: 1.3 COMS LOGICs
Lecture 6 Topics Combinational Logic Circuits
ECE 331 – Digital System Design
Logic Gates.
CSCI-100 Introduction to Computing
Chapter 2.3 Binary Logic.
Computer Fundamentals
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
How Boolean logic is implemented
Agenda – 2/12/18 Questions? Readings: CSI 4, P
Thursday, 22 November 2018 Logic Gates
Logic Gates.
JC Technology Logic Gates.
Logic Gates.
KS4 Electricity – Electronic systems
GCSE Computer Science – Logic Gates & Boolean Expressions
Logic Gates.
Binary Logic.
Chapter 4 Gates and Circuits.
Lecture 5 Binary Operation Boolean Logic. Binary Operations Addition Subtraction Multiplication Division.
Truth tables Mrs. Palmer.
Logic Gates By: Asst Lec. Besma Nazar Nadhem
What are Logic Gates?.
Presentation transcript:

DAT2343 Basic Logic Gates © Alan T. Pinck / Algonquin College; 2003

Logic Gates Goal: To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations of what is possible for a digital computer.

Logic Gates All digital computers for the past 50 years have been constructed using the same type of components. These components are called logic gates. Logic gates have been implemented in many different ways. Currently, logic gates are most commonly implemented using electronic VLSI transistor logic.

Logic Gates All basic logic gates have the ability to accept either one or two input signals (depending upon the type of gate) and generate one output signal.

Logic Gates Input and Output signals are binary. binary: always in one of two possible states; typically treated as: On / Off (electrically) 1 / 0 True / False There is a delay between when a change happens at a logic gates inputs and when the output changes, called gate switching time. The True or False view is most useful for thinking about the meaning of the basic logic gates.

Logic Gates The four basic logic gates are: AND OR XOR NOT Each of these gates may be drawn in either A generic form; or An electrical engineering form (more common in text books)

Logic Gates : AND The Output signal from an AND gate is True (on, 1) if and only if both Input signals are True (on, 1). The Output signal from an AND gate is False (off, 0), otherwise.

Logic Gates : OR The Output signal from an OR gate is True (on, 1) if either, or both, Input signals are True (on, 1). The Output signal from an OR gate is False (off, 0) if and only if both Input signals are False (off, 0).

Logic Gates : XOR The Output from an XOR (exclusive or) is True (on, 1) if and only if the Input signals are different. The Output from an XOR is False if the Input signals are either both True or both False.

Logic Gates : NOT The Output signal from a NOT gate is True (on, 1) if and only if the Input signal is False. The Output signal from a NOT gate is False (off, 0) if and only if the Input signal is True.

Logic Gates : NOT combined with other gates Note that in the classic: electronic engineering form, it is really the bubble that indicates the NOT activity.

Logic Gates : Analysis of Circuit with Feedback

Logic Gates : Summary Truth Tables 0 = False = off 1 = True = on

End of Lecture