Part I Background and Motivation

Slides:



Advertisements
Similar presentations
Modular Combinational Logic
Advertisements

Digital Logic Design Week 7 Encoders, Decoders, Multiplexers, Demuxes.
1 KU College of Engineering Elec 204: Digital Systems Design Lecture 9 Programmable Configurations Read Only Memory (ROM) – –a fixed array of AND gates.
CSCE 211: Digital Logic Design Chin-Tser Huang University of South Carolina.
1 Lecture 11: Digital Design Today’s topics:  Evaluating a system  Intro to boolean functions.
Multiplexers, Decoders, and Programmable Logic Devices
PowerPoint Overheads for Computer Architecture From Microprocessors To Supercomputers Behrooz Parhami Copyright © 2005 Oxford University Press.
Combinational Logic Design
Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Logic Circuits I.
The Digital Logic Level
Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Logic Circuits I.
Apr. 3, 2000Systems Architecture I1 Systems Architecture I (CS ) Lecture 3: Review of Digital Circuits and Logic Design Jeremy R. Johnson Mon. Apr.
Combinational Design, Part 3: Functional Blocks
Chapter
Lecture 22: 11/19/2002CS170 Fall CS170 Computer Organization and Architecture I Ayman Abdel-Hamid Department of Computer Science Old Dominion University.
June 2005Computer Architecture, Background and MotivationSlide 1 Part I Background and Motivation.
Chap 2. Combinational Logic Circuits
June 2005Computer Architecture, Background and MotivationSlide 1 Part I Background and Motivation.
Computer Architecture From Microprocessors To Supercomputers
CS/COE0447 Computer Organization & Assembly Language
Appendix C Basics of Digital Logic Part I. Florida A & M University - Department of Computer and Information Sciences Modern Computer Digital electronics.
Chapter # 4: Programmable Logic
1 ECE 545—Digital System Design with VHDL Lecture 1 Digital Logic Refresher Part A – Combinational Logic Building Blocks.
Company LOGO Edit your slogan here DKT 122/3 DIGITAL SYSTEM 1 WEEK #8 FUNCTIONS OF COMBINATIONAL LOGIC (ENCODER & DECODER, MUX & DEMUX)
Chapter 3 Digital Logic Structures
CHAPTER 2 Digital Combinational Logic/Arithmetic Circuits.
Appendix C Basics of Logic Design. Appendix C — Logic Basic — 2 Logic Design Basics §4.2 Logic Design Conventions Objective: To understand how to build.
This chapter in the book includes: Objectives Study Guide
COSC3330 Computer Architecture Lecture 2. Combinational Logic
Morgan Kaufmann Publishers
Chapter # 4: Programmable Logic
ECE 2110: Introduction to Digital Systems
ECE 2110: Introduction to Digital Systems
This chapter in the book includes: Objectives Study Guide
Computer Architecture & Operations I
Digital Design Jeff Kautzer Univ Wis Milw.
Multiplexer.
Overview Part 1 – Gate Circuits and Boolean Equations
Combinational Logic Circuits
Computer Organization and Design Transistors & Logic - II
Computer Architecture & Operations I
Lecture 9 Logistics Last lecture Today HW3 due Wednesday
Jeremy R. Johnson Wed. Sept. 29, 1999
This chapter in the book includes: Objectives Study Guide
ECE 434 Advanced Digital System L03
CHAPTER 2 Boolean Algebra
Basics Combinational Circuits Sequential Circuits
Basics Combinational Circuits Sequential Circuits Ahmad Jawdat
CPE/EE 422/522 Advanced Logic Design L02
Combinatorial Logic Design Practices
Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan
Digital Logic Structures Logic gates & Boolean logic
CSCE 211: Digital Logic Design
CS/COE0447 Computer Organization & Assembly Language
The Digital Logic Level
CSCE 211: Digital Logic Design
ECE434a Advanced Digital Systems L02
Lecture 8 Logistics Last lecture Last last lecture Today
Week 7: Gates and Circuits: PART II
Programmable Configurations
CSCE 211: Digital Logic Design
13 Digital Logic Circuits.
CSCE 211: Digital Logic Design
Logic Circuits I Lecture 3.
Chapter-4 Combinational Logic
Digital System Design Combinational Logic
FIGURE 5-1 MOS Transistor, Symbols, and Switch Models
Digital Circuits and Logic
Presentation transcript:

Part I Background and Motivation June 2005 Computer Architecture, Background and Motivation

I Background and Motivation Provide motivation, paint the big picture, introduce tools: Review components used in building digital circuits Present an overview of computer technology Understand the meaning of computer performance (or why a 2 GHz processor isn’t 2 as fast as a 1 GHz model) Topics in This Part Chapter 1 Combinational Digital Circuits Chapter 2 Digital Circuits with Memory Chapter 3 Computer System Technology Chapter 4 Computer Performance June 2005 Computer Architecture, Background and Motivation

1 Combinational Digital Circuits First of two chapters containing a review of digital design: Combinational, or memoryless, circuits in Chapter 1 Sequential circuits, with memory, in Chapter 2 Topics in This Chapter 1.1 Signals, Logic Operators, and Gates 1.2 Boolean Functions and Expressions 1.3 Designing Gate Networks 1.4 Useful Combinational Parts 1.5 Programmable Combinational Parts 1.6 Timing and Circuit Considerations June 2005 Computer Architecture, Background and Motivation

1.1 Signals, Logic Operators, and Gates Figure 1.1 Some basic elements of digital logic circuits, with operator signs used in this book highlighted. June 2005 Computer Architecture, Background and Motivation

Variations in Gate Symbols Figure 1.2 Gates with more than two inputs and/or with inverted signals at input or output. June 2005 Computer Architecture, Background and Motivation

Gates as Control Elements Figure 1.3 An AND gate and a tristate buffer act as controlled switches or valves. An inverting buffer is logically the same as a NOT gate. June 2005 Computer Architecture, Background and Motivation

Wired OR and Bus Connections Figure 1.4 Wired OR allows tying together of several controlled signals. June 2005 Computer Architecture, Background and Motivation

Control/Data Signals and Signal Bundles Figure 1.5 Arrays of logic gates represented by a single gate symbol. June 2005 Computer Architecture, Background and Motivation

1.2 Boolean Functions and Expressions Ways of specifying a logic function  Truth table: 2n row, “don’t-care” in input or output  Logic expression: w  (x  y  z), product-of-sums, sum-of-products, equivalent expressions  Word statement: Alarm will sound if the door is opened while the security system is engaged, or when the smoke detector is triggered  Logic circuit diagram: Synthesis vs analysis June 2005 Computer Architecture, Background and Motivation

Manipulating Logic Expressions Table 1.2 Laws (basic identities) of Boolean algebra. Name of law OR version AND version Identity x  0 = x x 1 = x One/Zero x  1 = 1 x 0 = 0 Idempotent x  x = x x x = x Inverse x  x  = 1 x x  = 0 Commutative x  y = y  x x y = y x Associative (x  y)  z = x  (y  z) (x y) z = x (y z) Distributive x  (y z) = (x  y) (x  z) x (y  z) = (x y)  (x z) DeMorgan’s (x  y) = x  y  (x y) = x   y  June 2005 Computer Architecture, Background and Motivation

Proving the Equivalence of Logic Expressions Example 1.1  Truth-table method: Exhaustive verification  Arithmetic substitution x  y = x + y - xy x  y = x + y - 2xy  Case analysis: two cases, x = 0 or x = 1  Logic expression manipulation Example: x  y ? x y  x y  x + y – 2xy ? (1 – x)y + x(1 – y) – (1 – x)yx(1 – y) June 2005 Computer Architecture, Background and Motivation

1.3 Designing Gate Networks  AND-OR, NAND-NAND, OR-AND, NOR-NOR  Logic optimization: cost, speed, power dissipation (x  y) = x y  Figure 1.6 A two-level AND-OR circuit and two equivalent circuits. June 2005 Computer Architecture, Background and Motivation

BCD-to-Seven-Segment Decoder Example 1.2 Figure 1.8 The logic circuit that generates the enable signal for the lowermost segment (number 3) in a seven-segment display unit. June 2005 Computer Architecture, Background and Motivation

1.4 Useful Combinational Parts  High-level building blocks  Much like prefab parts used in building a house  Arithmetic components will be covered in Part III (adders, multipliers, ALUs)  Here we cover three useful parts: multiplexers, decoders/demultiplexers, encoders June 2005 Computer Architecture, Background and Motivation

Computer Architecture, Background and Motivation Multiplexers Figure 1.9 Multiplexer (mux), or selector, allows one of several inputs to be selected and routed to output depending on the binary value of a set of selection or address signals provided to it. June 2005 Computer Architecture, Background and Motivation

Decoders/Demultiplexers Figure 1.10 A decoder allows the selection of one of 2a options using an a-bit address as input. A demultiplexer (demux) is a decoder that only selects an output if its enable signal is asserted. June 2005 Computer Architecture, Background and Motivation

Computer Architecture, Background and Motivation Encoders Figure 1.11 A 2a-to-a encoder outputs an a-bit binary number equal to the index of the single 1 among its 2a inputs. June 2005 Computer Architecture, Background and Motivation

1.5 Programmable Combinational Parts A programmable combinational part can do the job of many gates or gate networks Programmed by cutting existing connections (fuses) or establishing new connections (antifuses)  Programmable ROM (PROM)  Programmable array logic (PAL)  Programmable logic array (PLA) June 2005 Computer Architecture, Background and Motivation

Computer Architecture, Background and Motivation PROMs Figure 1.12 Programmable connections and their use in a PROM. June 2005 Computer Architecture, Background and Motivation

Computer Architecture, Background and Motivation PALs and PLAs Figure 1.13 Programmable combinational logic: general structure and two classes known as PAL and PLA devices. Not shown is PROM with fixed AND array (a decoder) and programmable OR array. June 2005 Computer Architecture, Background and Motivation

1.6 Timing and Circuit Considerations Changes in gate/circuit output, triggered by changes in its inputs, are not instantaneous  Gate delay d: a fraction of, to a few, nanoseconds  Wire delay, previously negligible, is now important (electronic signals travel about 15 cm per ns)  Circuit simulation to verify function and timing June 2005 Computer Architecture, Background and Motivation

Computer Architecture, Background and Motivation Glitching Using the PAL in Fig. 1.13b to implement f = x  y  z Figure 1.14 Timing diagram for a circuit that exhibits glitching. June 2005 Computer Architecture, Background and Motivation

CMOS Transmission Gates Figure 1.15 A CMOS transmission gate and its use in building a 2-to-1 mux. June 2005 Computer Architecture, Background and Motivation