Simple One and Two Input Logic Gates Truth Tables and Function Tables Based Upon 0 – 5 V.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Logic Gates.
CT455: Computer Organization Logic gate
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
Lecture. Outline Bits Gates Combinatorial Logic Spice Hands-On Stuff.
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
Physical States for Bits. Black Box Representations.
3.1 Logic Signals and Gates Logic Signals ReturnNext  Logic Value: Many physical quantities can be represented two possible numbers or logic values —
CIS 6001 Gates Gates are the building blocks for digital circuits Conventions used is high voltage = 1 and ground = 0 Inverter and NOT Gate are two terms.
Part 2: DESIGN CIRCUIT. LOGIC CIRCUIT DESIGN x y z F F = x + y’z x y z F Truth Table Boolean Function.
Simple One and Two Input Logic Gates Truth Tables and Function Tables Based Upon TTL Levels.
GK-12 Student designed project (AP physics) Digital logic and Boolean algebra exercise. IC logic gates brought from Stevens were used in making simple.
Binary Numbers.
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.
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
 In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.
Basic Logic Operations and Standard Logic Gates (Lecture #1) ECE 331 – Digital System Design.
4. Electrons and electronics 4.5 Digital electronics.
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.
Digital Logic. 2 Abstractions in CS (gates) Basic Gate: Inverter IO IO GNDI O Vcc Resister (limits conductivity) Truth Table.
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
Logic Signals and Gates. Binary Code Digital logic hides the pitfalls of the analog world by mapping the infinite set of real values for a physical quantity.
1 Ethics of Computing MONT 113G, Spring 2012 Session 5 Binary Addition.
 Seattle Pacific University EE Logic System DesignSwitchLogic-1 Switches AB A simple on/off switch IF switch is closed THEN light is on + 5V -
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
COMBINATIONAL LOGIC.
1 Ethics of Computing MONT 113G, Spring 2012 Session 4 Binary Addition.
How does a Computer Add ? Logic Gates within chips: AND Gate A B Output OR Gate A B Output A B A B
ECE 2110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR and parity check Circuits.
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 Gates and Boolean Algebra Introduction to Logic II.
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 Learning Objectives Learn that there is a one-to-one relationship between logic gates and Boolean expressions Learn how logic gates are combined.
Combinational Circuits
ECE 3130 Digital Electronics and Design
ECE 3130 Digital Electronics and Design
Logic Gates.
Circuits Logic in Hardware.
ECE 331 – Digital System Design
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Exclusive OR Gate.
Basic Logical Operations (Fascinating)
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
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.
Schematics 201 Lecture Topic: Electrical Symbols
For OCR GCSE Computing Unit 1 - Theory
King Fahd University of Petroleum and Minerals
Waveforms & Timing Diagrams
JC Technology Logic Gates.
Boolean Algebra.
Logic Gates.
Logic Gates.
KS4 Electricity – Electronic systems
GCSE Computer Science – Logic Gates & Boolean Expressions
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.
Combinational Circuits
Logic Gates Logic Gates Gateway To Technology
XOR Function Logic Symbol  Description  Truth Table 
Department of Electronics
Digital Logic Design Basics Combinational Circuits Sequential Circuits.
Presentation transcript:

Simple One and Two Input Logic Gates Truth Tables and Function Tables Based Upon 0 – 5 V

Assumptions Truth Tables – True = logical “1” – False = logical “0” Function Tables – Ideal gate Output is 0V, which is equivalent to a logical “0” Output is 5V, which is equivalent to a logical “1” for TTL.

Single Input Gates: Buffer Symbol Truth Table Function Table AZ VAVA VoVo 0V 5V

Applications Reshape signal to increase voltage of a logical ‘1’/lower the voltage of a logical ‘0’. – Digital signals degrade as the signal passes through components (e.g., resistive losses in wires), addition of noise from electromagnetic interference (EMI), etc. Source or sink current beyond the specifications of the other gates. – Acts as a voltage follower (an op amp circuit). Used to compensate for propagation delay times.

Single Input Gates: Inverter Symbol Truth Table Function Table AZ VAVA VoVo 0V5V 0V

Two Input Gates: AND Symbol Truth Table Function Table ABZ VAVA VBVB VoVo 0V 5V0V 5V0V 5V

Two Input Gates: OR Symbol Truth Table Function Table ABZ VAVA VBVB VoVo 0V 5V 0V5V

Two Input Gates: NAND Symbol Truth Table Function Table ABZ VAVA VBVB VoVo 0V 5V 0V5V 0V5V 0V

Symbol Truth Table Function Table ABZ VAVA VBVB VoVo 0V 5V 0V5V0V 5V0V 5V 0V Two Input Gates: NOR

Two Input Gates: XOR Truth Table Function Table ABZ VAVA VBVB VoVo 0V 5V 0V5V 0V Symbol

2 bit Adder = = = = 10 ABLSB ABCarry

2 bit Adders A half adder is an Exclusive OR gate. – The output of the XOR gate is the least significant bit (LSB) of the addition of 2 1-bit numbers. A adder with carry is an XOR gate and an AND gate. – The output of the XOR gate is the LSB. – The output of the AND gate is the Carry.