real world example
play

Real World Example Big Picture Computer Overview (Chapter 1) - PowerPoint PPT Presentation

ADMIN Project 1 due Wed Feb 8 No collaboration this time start early & see instructor for help READING SI232 Appendix: Read B.7,B.8,B.9, B.10, and B.12. (skip the Verilog details). Slide Set #8: Digital Logic Finale


  1. ADMIN • Project 1 due Wed Feb 8 – No collaboration this time – start early & see instructor for help • READING SI232 – Appendix: Read B.7,B.8,B.9, B.10, and B.12. (skip the Verilog details). Slide Set #8: Digital Logic Finale • Quiz #2 on Friday Feb 10 (Appendix B) – Digital Logic: SlideSets 6, 7, and parts of 8 • Course Paper description due by Feb 24 for approval – Current computer architectural topic/issue – 3-5 pages – Suggested topics on course calendar – but a topic alone is not a description! (see online instructions) • 6 week exam, in class, Wed February 15 – Review to come 1 2 “Real World” Example Big Picture • Computer Overview (Chapter 1) • Buzzer Feature for a Car • A specific instruction set architecture (Chapter 2) • Should Buzz when • Logic Design (Appendix B) 1. the engine is on, the door is closed, and the seat belt is unbuckled • Arithmetic and how to build an ALU (Chapter 3) 2. the engine is on, the door is open • Performance issues (Chapter 4) • What are our input(s)? • Constructing a processor to execute our instructions (Chapter 5) • Pipelining to improve performance (Chapter 6) • Memory: caches and virtual memory (Chapter 7) • I/O (Chapter 8) • What are our output(s)? • A few advanced topics 3 4

  2. (extra space) Check Yourself • Could you have filled in the truth table? • Could you have filled in the K-Map? • Can you use the K-Map to minimize the equation? • Can you draw the circuit? 6 Bigger Units of Combinational Logic Multiplexor – Example Usage • Gates useful but fairly low level $t0 • Easier to constructs circuits with higher-level building blocks instead: $t1 – Combinational Logic $t2 • Multiplexors (mux) • Decoders – (later) Sequential Logic Adder • Registers • Arithmetic unit (ALU) • What is this an example of? $a2 $a3 7 8

  3. Multiplexor – 1-bit version Multiplexor – Wider version • 32 bit wide, 2-way Mux: EN S1 S0 D3 D2 Q D1 D0 • Think of a mux as a selector • S selects one input to be the output • Pictures don’t always show the width • N-way mux has (especially if 32 bits) – # inputs: – # selector lines (S): – # outputs: • Implementation? 9 10 Decoders Decoder Implementation x Q7 EN Q6 1 1 Q5 OR 0 Q4 XY S2 Q3 y S1 Q2 S0 Q1 1 Q0 0 0 X~Y • Translates an n-bit input into a single asserted output – # inputs: 0 s1 s0 Q3 Q2 Q1 Q0 – # outputs 0 0 0 0 0 1 ~XY • Named by inputs/outputs: 0 1 0 0 1 0 • Example uses: 0 – Memory addressing 1 0 0 1 0 0 – Identifying instruction op codes ~X~Y 1 1 1 0 0 0 11 12

  4. Exercise #1 Exercise #2 • A. A 8-way mux has ______ “inputs” , _____ selector bit(s), and • Draw an 8-input mux with inputs: A, B, C, D, E, F, G, H and output: ______ output(s) OUT (Remember to draw the selector bits) (you don’t need to draw the internals, just the external view) • B. For a 3-input decoder, there are _______ output(s) • C. For a 4-input decoder, there are _______ output(s) 13 14 Exercise #3 Implementing Combinational Logic • Draw the internals of a 1 to 2 decoder. Given logic with inputs A, B, C; outputs D, E, F Several ways to implement combinational logic besides raw gates: 1. Read only memory 2. PLA (programmable logic arrays – next slide) Specific logic may be hardcoded at factory or programmable in field, depending on the technology 15 16

  5. PLAs End of Combinational Logic 17 18 Combinational vs. Sequential Logic Clocks and State Elements • Clock Frequency is the __________ of _______________. • Combinational Logic – output depends only on • When should updates occur to state elements? – Edge – change state when • Sequential Logic – output depends on: – Level – change state when • Previous inputs are stored in “state elements” – __________ determines when an element is updated • State elements will involve use of feedback in circuit – Not permitted in combinational circuits 19 20

  6. Outline: Types of Memory Elements #1: S-R Memory Element • Output Q is the “state” of the latch 1. Unclocked – Our example: S-R Memory Element – Our purpose: demonstrate feedback 2. Latches • Memory elements that are • Our example: D-type Latch • Our purpose: building block for flip-flops 3. Flip-Flops • Memory elements that are S R Action • Our example: D-type Flip-flop 1 0 • Our purpose: Used extensively in CPU 0 1 0 0 Note: S-R element sometimes called S-R latch, but for this class we assumes all latches are clocked 1 1 21 22 Truth Tables � � � � Next State Tables #2: D-Latch • New kind of input: • State only changes when • New kind of output: • Latch is “open” when clock is high • Latch is “closed” when clock is low – Each X can be either a 0 or 1 – During this time (helps with minimization) – But in actual circuit, will have some specific value – Applies to combination logic too S\RQ 00 01 11 10 0 0 1 0 0 1 1 1 x x Q-Latch 23 24

  7. #3: D-Type Flip Flop Exercise #1 – Complete the timing diagram below D Latch – active high • State only changes D FlipFlop – falling edge triggered • Otherwise… remembers previous state • Abstraction: D Q C Q-Latch Q-FlipFlop Q-flipflop 25 26 Exercise #3 Exercise #2 – Complete diagram – note different assumptions D Latch – active low • Draw the circuit diagram for D flip-flop that is rising-edge triggered . D FlipFlop – rising edge triggered You may use a D-latch as a building block. Could you do this without looking at your notes? Q-Latch Q-FlipFlop 27 28

  8. Exercise #4 - Stretch State Diagrams • State = Contents of memory • Draw the Next State Table for a D-latch, including the clock as one of the inputs. Reduce this function with a K-map. Do you get the same • Diagrams are a tool to function as the circuit we drew for this latch? represent ALL transitions from one state to another – What causes state changes? • Example for D Latch: Q=0 Q=1 29 30 Inputs: (N)ickel, (D)ime Finite State Machines Example: Candy Machine Outputs: (C)andy, (R)efund • Can use state diagrams to express more complex sequential logic. • Example: Candy Machine – Inputs: N (nickel received), D (dime received) – Outputs: C (dispense candy), R (give refund) – Should dispense candy after 15 cents deposited, + refund if overpaid. Then await next customer. • We’ll use Moore machine – output depends only on • What states do we need? 31 32

  9. Exercise #1 Exercise #2 A Q t Q t+1 • Draw a state diagram for the • John and Mary agree to play rock-paper-scissors to decide who has to pay for following next state function: 0 0 0 dinner. The overall winner will be whoever wins two rounds in a row. • Assume you have 6 inputs: • How would you describe what 0 1 1 input ‘A’ is accomplishing? JR, JP, JS (only one true depending on if John plays rock, paper, or scissors) – 1 0 1 – MR, MP, MS • At each round, 1 1 1 1. If John and Mary play the same (both scissors, etc.), then the game returns to the initial state. 2. If either John or Mary has just won twice in a row, the next state should be a “Game over” state. 3. Otherwise, the next state should reflect who won the most recent round Your task: 1. How many different states do you need? 2. Draw the next state diagram for this game Of course: Rock beats scissors Paper beats rock Scissors beats paper 33 34 Extra space Exercise #3 • How you could you make the rock/papers/scissors machine function on just 4 inputs? Draw the next state table for this version of the game. Do you have any don’t cares? 35 36

  10. Implementing Finite State Machines FSM Example • Squares = • Circles = • We don’t always show the clock for registers/memory diagrams, but will be implicit 37 38 Combining Combinational and Sequential Logic Registers and Register Files Finite State Machine was our first example of this • Two general patterns: • • Registers store data (bits) (i.e. have memory) 1. State Machine – Each register = • Register files contain: – Set of registers 2. Pipeline – Logic for read/write • MIPS register file has how many registers? • How does it store data? • In either case, have important timing concerns – Output of combinational logic block may oscillate before settling • How does it know which – Clock cycle time must be long enough so combo-logic settles before register to access? the sequential logic (state) reads the new value – State elements ensure that combo-logic inputs remain stable 39 40

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend