AWIM Series Lawndale High School Experiment 6 Dec, 2017

Slides:



Advertisements
Similar presentations
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, every.
Advertisements

Logic Gates.
CT455: Computer Organization Logic gate
Chapter 20 Digital Circuits. Chapter 20 Digital Circuits.
Module 5 – Sequential Logic Design with VHDL
Sequential Circuits1 DIGITAL LOGIC DESIGN by Dr. Fenghui Yao Tennessee State University Department of Computer Science Nashville, TN.
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
Informationsteknologi Friday, October 19, 2007Computer Architecture I - Class 81 Today’s class Digital Logic.
University College Cork IRELAND Number Systems, Data Types, Codes Logic Gates: An Introduction.
Revision for A level year 2. * TTL stands for Transistor Transistor Logic * TTL operates on a power supply of 5 volts * The power supply tolerance for.
1 Survey of Computer Science CSCI 110, Spring 2011 Lecture 16 Digital Circuits, binary Numbers.
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,
Transistors and Logic Circuits. Transistor control voltage in voltage out control high allows current to flow -- switch is closed (on) control low stops.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
ACOE1611 Combinational Logic Circuits Reference: M. Mano, C. Kime, “Logic and Computer Design Fundamentals”, Chapter 2.
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
CHAPTER-2 Fundamentals of Digital Logic. Digital Logic Digital electronic circuits are used to build computer hardware as well as other products (digital.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
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.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
LOGIC GATES. INTRODUCTION TO LOGIC GATES Boolean functions may be practically implemented by using electronic gates. The following points are important.
DATA REPRESENTATION IN COMPUTER MEMORY.  Describe the coding system:  Sign and magnitude  1’s Complement and 2’s Complement  Binary Coded Decimal.
Logic Families There are several different families of logic gates. Each family has its capabilities and limitations, its advantages and disadvantages.
SIGNAL TRAINING SCHOOL – BORDER SECIRITY FORCE - TIGRI
Logic gates.
Homework Reading Machine Projects Labs
FLIP FLOPS Binary unit capable of storing one bit – 0 or 1
Logic Gates.
Transistors and Logic Circuits
EI205 Lecture 3 Dianguang Ma Fall, 2008.
Introduction Molecules: made up of atoms of individual elements.
Instructor:Po-Yu Kuo 教師:郭柏佑
Digital Fundamentals Floyd Chapter 3 Tenth Edition
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
EI205 Lecture 5 Dianguang Ma Fall 2008.
PROPAGATION DELAY.
Exclusive OR Gate.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
An Introduction to Microprocessors
Practice #Digital Logic Mr. Burleson
Digital Electronics & Logic Design
Digital Logic Structures Logic gates & Boolean logic
Lecture Part A Combinational Logic Design & Flip Flop
Number Systems Decimal (base 10) { }
For OCR GCSE Computing Unit 1 - Theory
Waveforms & Timing Diagrams
Logic Gates.
JC Technology Logic Gates.
Instructor:Po-Yu Kuo 教師:郭柏佑
Logic Gates.
KS4 Electricity – Electronic systems
DIGITAL ELECTRONICS B.SC FY
Chapter 10.3 and 10.4: Combinatorial Circuits
Logic Gates.
Binary Logic.
Digital Logic Experiment
FLIP-FLOPS.
Flip-Flops.
Department of Electronics
An Introduction to Microprocessors
What are Logic Gates?.
Lecture 4 – Binary Logic and Logic Gates
ATS’s COLLEGE OF ENGINEERING, MIRAJ Subject:- Basic Electronics Lecturer:- Amit Totade.
Course Title : Digital Electronics -1 Course No.: 6841 Course Teacher:Engr: Suvadra Chowdhury Chief Instructor Chittagong Mohila –Polytechnic Institute.
Presentation transcript:

AWIM Series Lawndale High School Experiment 6 Dec, 2017 Digital Logic Theory AWIM Series Lawndale High School Experiment 6 Dec, 2017

Number Systems Numbers for Humans The Decimal Number system Base = 10 Digits are 0-9 Powers of ten for bigger numbers ( 104 + 103+ 102 + 101 + 100) Ex. 456 = 4x102 + 5x101 + 6x100 = 400 + 50 + 6 Numbers for Computers The Binary Number system Base = 2 Digits are 0-1 Powers for bigger numbers ( 25 + 24 + 23 + 22 + 21 + 20 ) Ex. 54 = 1x25 + 1x24 + 0x23 + 1x22 + 1x21 + 0x20 = 32 + 16 + 4 + 2 Bit = 1 digit Byte = 8 Bits Nibble = 4 Bits Word = 16 Bits Octal = 3 Bit group 0-7 Hexadecimal = 4 Bit group 0-15 (0-9, A-F)

Digital Logic Theory Logic is the fundamental language of the digital world of computers, calculators, digital instruments and digital electronics in general. It is the way machines talk with each other and with humans, providing responses for a given set of input conditions. The term Logic, as used in this course, is a set of rules defining a predetermined output from a set of known inputs. The most common logic in use today has two states, On (1or High); or off (0 or Low). Digital logic today is implemented in multiple technologies, RTL, DTL, TTL, ECL, CMOS, etc. The basic types of Logic in this course are Invert; AND; OR; NAND; and NOR. Using these basic types in combination can produce other logic functions (R-S and R-S-T Flip-Flops, etc). In this lesson we will learn the symbols for each type of logic element, how to produce a “Truth Table” for each logic type, learn about Logic Notation and learn how to analyze combinational logic circuits.

Digital Logic Theory Digital Logic has a set of “threshold” voltages. Inputs below the lower threshold are considered a LOW or 0 input, while inputs above the upper threshold are considered a HIGH or 1 input. Voltages between the LOW and HIGH thresholds are ignored. For the most common logic in use today which uses +5volts for its power (TTL, LS, ALS series), the lower threshold is about +0.4 volts and the upper threshold is about +2.4 volts. Common Logic gates can have from 2 to 8 inputs. Logic can be “positive logic” where a “1” is above the high threshold voltage, or “negative logic” where a “1” is below the low threshold voltage. Logic can be designed to operate at very high speeds; ECL logic can run above 10Ghz. High speed logic uses lower power supply voltages, 3.3 volts is common.

Digital Logic Theory The Invert or “NOT” Gate Element A A IN OUT 1 1 Truth Table Invert Symbol A Input C Output Equation C = A The Invert or NOT function provides the inversion or Opposite of the input. This function is used alone and in series with other logic elements to form the negative of the element (OR + NOT = NOR).

Digital Logic Theory The AND Gate Element A A o B IN A OUT 1 1 Truth Table IN B AND Symbol A Input C B Output Equation C = A o B The AND function provides a logic “1” on the output only when Both inputs are logic “1”. This function is used in all types of logic and with the Invert element forms the NAND element .

Digital Logic Theory The NAND Gate Element A A o B IN A OUT 1 1 Truth Table IN B NAND Symbol A Input Output C B Equation C = A o B The NAND function provides a logic “0” on the output only when Both inputs are logic “1”. This function is used in all types of logic circuits.

Digital Logic Theory The OR Gate Element A A + B IN A OUT 1 1 Truth Table IN B OR Symbol A Input Output C B Equation C = A + B The OR function provides a logic “1” on the output when Either input(s) are logic “1”. If we apply a NOT function to the output, we obtain the NOR gate. This function is used in all types of logic circuits.

Digital Logic Theory The NOR Gate Element A A + B IN A OUT 1 1 Truth Table IN B NOR Symbol A Input Output C B Equation C = A + B The NOR function provides a logic “0” on the output when Either input(s) are logic “1”. This function is used in all types of logic circuits.

Digital Logic Theory A IN A IN B OUT 1 B 1 1 Inputs 1 A o B 1 1 1 1 B 1 1 Inputs 1 A o B 1 1 1 Truth Table C Output B C = ( A o B ) + B = A + B Example 1 – combinational logic

Digital Logic Theory Combinational logic circuit using two NAND gates. “Set” Input A C Output C “Reset Input B Output R-S “Set-Reset Flip Flop This circuit provides a “Bi-Stable” switch function, Alternating from one state to the other based on the inputs.

Digital Logic Theory Input Wave-shaping circuit using two NAND gates C Output C Output This circuit changes a Sine wave input into a Square wave using the R-S latch function.

Homework - Digital Logic Name:__________ Date:________ A input of 0.25volts to standard 5v logic equals a “1” T F The notation for a two input OR gate is A + B. T F Most new automobiles contain digital logic T F The term TTL stands for Diode-Transistor-Logic T F A AND gate can have only two inputs T F A OR gate and a NOT gate can be combined to form a: a) problem gate b) NAND gate c) NOR gate d) Invert gate If we put NOT gates on both inputs to a two input AND gate we have a: a) NAND gate b) NOR gate c) maybe gate d) water gate How many input combinations can a Four input AND gate handle: a) 4 b) 16 c) 8 d) 12 What is the normal HIGH Threshold voltage for 5volt logic: a) 1.2 volts b) 5.0 volts c) 3.3 volts d) 2.4 volts

Homework - Digital Logic IN A IN B OUT A B 1 Inputs 1 1 1 Truth Table C Output C = Problem 10 – Write the equation for the output of the circuit above and fill in the Truth Table.

Homework - Digital Logic IN A IN B IN C OUT A B 1 1 1 1 Inputs 1 1 1 1 1 1 1 1 D C Output Truth Table D = Problem 11 – Write the equation for the output of the circuit above and fill in the Truth Table.