13 Digital Logic Circuits.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

ADDER, HALF ADDER & FULL ADDER
컴퓨터구조론 교수 채수환. 교재 Computer Systems Organization & Architecture John D. Carpinelli, 2001, Addison Wesley.
CDA 3100 Recitation Week 10.
Figure 4.1. The function f (x1, x2, x3) =  m(0, 2, 4, 5, 6).
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
Combinational Circuits ENEL 111. Common Combinationals Circuits NAND gates and Duality Adders Multiplexers.
التصميم المنطقي Second Course
Chapter 11_1 (chap 10 ed 8) Digital Logic. Irvine, Kip R. Assembly Language for Intel-Based Computers, NOT AND OR XOR NAND NOR Truth Tables Boolean.
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.
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
Relationship Between Basic Operation of Boolean and Basic Logic Gate The basic construction of a logical circuit is gates Gate is an electronic circuit.
How to build a digital gate. CMOS NAND Gate Several realization of NOT 1. This is how a NOT operation is often represented schematically. 2. Sometimes.
CHAPTER 3 Digital Logic Structures
Multiplexer as a Universal Function Generator
4/11/03 Minute Paper How does MS window work? Like how do we have the screen on the computer. Is it just a bunch of Binary #’s representing colors? When.
Part 2: DESIGN CIRCUIT. LOGIC CIRCUIT DESIGN x y z F F = x + y’z x y z F Truth Table Boolean Function.
Chapter 12 Digital Logic Circuit Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Boolean Algebra and Logic Simplification
Chapter 10_1 Digital Logic. Irvine, Kip R. Assembly Language for Intel-Based Computers, NOT AND OR XOR NAND NOR Truth Tables Boolean Operators.
Logic Design CS221 1 st Term combinational circuits Cairo University Faculty of Computers and Information.
Logic Function Optimization. Combinational Logic Circuit Regular SOP and POS designs Do not care expressions Digital logic circuit applications Karnaugh.
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.
Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Logic Circuits I.
Transistors and Logic Circuits. Transistor control voltage in voltage out control high allows current to flow -- switch is closed (on) control low stops.
Logic Design A Review. Binary numbers Binary numbers to decimal  Binary 2 decimal  Decimal 2 binary.
F = ∑m(1,4,5,6,7) F = A’B’C+ (AB’C’+AB’C) + (ABC’+ABC) Use X’ + X = 1.
Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Logic Circuits I.
Digital Circuits Design Chin-Sung Lin Eleanor Roosevelt High School.
Logic Gates Shashidhara H S Dept. of ISE MSRIT. Basic Logic Design and Boolean Algebra GATES = basic digital building blocks which correspond to and perform.
1 EG 32 Digital Electronics Thought for the day You learn from your mistakes..... So make as many as you can and you will eventually know everything.
CO UNIT-I. 2 Multiplexers: A multiplexer selects information from an input line and directs the information to an output line A typical multiplexer has.
Computer Systems 1 Fundamentals of Computing Simplifying Boolean Expressions.
1 CS 151: Digital Design Chapter 3: Combinational Logic Design 3-1Design Procedure CS 151: Digital Design.
ECE 320 Homework #4 1. Using 8 data input selector logic (MUX), implement the following two functions: a) F(A,B,C)=S 0 S 2 S 3 S 5 b) F(A,B,C,D)=P 0 +P.
1 ECE 545—Digital System Design with VHDL Lecture 1 Digital Logic Refresher Part A – Combinational Logic Building Blocks.
Module 11.  In Module 9, we have been introduced to the concept of combinational logic circuits through the examples of binary adders.  Meanwhile, in.
ELECTRICAL ENGINEERING: PRINCIPLES AND APPLICATIONS, Third Edition, by Allan R. Hambley, ©2005 Pearson Education, Inc. Chapter 7 Logic Circuits.
WORKING PRINCIPLE OF DIGITAL LOGIC
1 Binary Signals Logic gate circuits are designed to input and output only two types of signals: “high” (1) and “low” (0), as represented by a variable.
CHAPTER 13 Digital Logic Circuits. Figure Voltage analog of internal combustion engine in-cylinder pressure Figure 13.1.
Digital Circuits Design Chin-Sung Lin Eleanor Roosevelt High School.
Chapter 3 Digital circuits. 3.1 Logic signals - Gates Binary system : (binary bits or digits) - 0 & 1 - LOW & HIGH - Negated and Asserted.
Assembly Lab1 - Review.
Computer Architecture & Operations I
Combinational Circuits and Boolean
CHAPTER 3 Simplification of Boolean Functions
Eng. Mai Z. Alyazji October, 2016
Transistors and Logic Circuits
Lecture 4 Nand, Nor Gates, CS147 Circuit Minimization and
This chapter in the book includes: Objectives Study Guide
DIGITAL LOGIC CIRCUITS
CS221: Digital Logic Design Combinational Circuits 3
Digital Logic & Design Dr. Waseem Ikram Lecture 05
Exclusive OR Gate.
Overview Register Transfer Language Register Transfer
DIGITAL LOGIC CIRCUITS
Reading: Hambley Chapters
Basics Combinational Circuits Sequential Circuits
Schematics 201 Lecture Topic: Electrical Symbols
ECE434a Advanced Digital Systems L02
Digital Logic & Design Lecture 05
Gates Type AND denoted by X.Y OR denoted by X + Y NOR denoted by X + Y
DIGITAL ELECTRONICS B.SC FY
Chapter 10.3 and 10.4: Combinatorial Circuits
Logic Circuits I Lecture 3.
Table 1.1 Powers of Two.
XOR Function Logic Symbol  Description  Truth Table 
Digital System Design Combinational Logic
SYEN 3330 Digital Systems Chapter 2 – Part 1 SYEN 3330 Digital Systems.
Presentation transcript:

13 Digital Logic Circuits

Figure 13.9 Binary and Gray code patterns for linear position encoders Decimal 1111 1110 1101 1100 1011 1010 1001 1000 0111 0110 0101 0100 0011 0010 0001 0000 Gray code 1000 1001 1011 1010 1110 1111 1101 1100 0100 0101 0111 0110 0010 0011 0001 0000 Decimal 15 15 14 14 13 13 12 12 11 11 10 10 9 9 8 8 7 7 6 6 5 5 4 4 3 3 2 2 1 1

Figure 13.10 Binary and Gray code patterns for angular position encoders 11111 Binary sequence Gray code 00000 01111 10000 01000 11000

Figure 13.14 Complements and the NOT gate X NOT gate 1 Truth table for NOT gate NOT

Figure 13.17 De Morgan’s laws X Y Z + . OR AND = NOT ( )

Figure 13.18 Sum-of-products and product-of-sum logic functions W A B C D Product of sums expression . ( + ) OR AND X Y Z Sum of products ) + (

Figure 13.21 Equivalence of NAND and NOR gates with AND and OR gates ( A + B ) = . NAND . ( A B ) = A + B NOR B B A . A B A A + B AND NOT . ( A B ) OR NOT ( A + B ) B B A B A B ( A . B ) A B A B ( A + B ) 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 NAND gate NOR gate

Figure 13.27 XOR gate Z = X Y X Z XOR 1 Truth table

Figure 13.28 Realization of an XOR gate Y Z NAND OR AND

Figure 13.30 Truth table and karnaugh map representations of a logic function X Y 1 Z Desired Function Truth table X Y XY Karnaugh map

Figure 13.31 Karnaugh map for a four-variable expression Y 1 Z Desired Function Truth table for four-variable expression . W

Figure 13.55 4-to-1 MUX 4-to-1 MUX Enable Data inputs E D F I Output 1 Data select Data inputs E F 4-to-1 MUX block diagram of 4-to-1 MUX D I 1 2 3 Truth table of 4-to-1 MUX

Figure 13.58 Read-only memory ROM i = output word b 1 2 3 Enable E Address lines I ROM content (4-bit words) address W 4