gates and logic from transistors to logic gates and logic
play

Gates and Logic: From Transistors to Logic Gates and Logic Circuits - PowerPoint PPT Presentation

Gates and Logic: From Transistors to Logic Gates and Logic Circuits CS 3410: Computer System Organization and Programming [K. Bala, A. Bracy, E. Sirer, and H. Weatherspoon] Goals for Today From Switches to Logic Gates to Logic Circuits


  1. Gates and Logic: From Transistors to Logic Gates and Logic Circuits CS 3410: Computer System Organization and Programming [K. Bala, A. Bracy, E. Sirer, and H. Weatherspoon]

  2. Goals for Today • From Switches to Logic Gates to Logic Circuits • Transistors, Logic Gates, Truth Tables • Logic Circuits § Identity Laws § From Truth Tables to Circuits (Sum of Products) 2

  3. Silicon Valley & the Semiconductor Industry • Transistors: Youtube video “How does a transistor work” • https://www.youtube.com/watch?v=IcrBqCFLHIY Break: show some Transistor, Fab, Wafer photos • 3

  4. Transistors 101 Gate Gate Source Drain Source Drain — Insulator Insulator + + - + + + - + + + + + + + + + + - + - P-type channel created - - - - - - - + + + + + + + + + + - + - - + + - - P-type P-type P-type P-type - N-type - N-type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Off On N-Type Silicon: negative free-carriers (electrons) P-Type Silicon: positive free-carriers (holes) P-Transistor: negative charge on gate generates electric field that creates a (+ charged) p-channel connecting source & drain N-Transistor: works the opposite way Metal-Oxide Semiconductor (Gate-Insulator-Silicon) Complementary MOS = CMOS technology uses both p- & n-type • transistors 4

  5. CMOS Notation N-type On/Closed Off/Open 0 1 gate P-type On/Closed Off/Open 0 1 gate Gate input controls whether current can flow between the other two terminals or not. Hint: the “o” bubble of the p-type tells you that this gate wants a 0 to be turned on 5

  6. iClicker Question Which of the following statements is false ? (A) P- and N-type transistors are both used in CMOS designs. (B) As transistors get smaller, the frequency of your processor will keep getting faster. (C) As transistors get smaller, you can fit more and more of them on a single chip. (D) Pure silicon is a semi conductor. (E) Experts believe that Moore’s Law will soon end. 6

  7. 2-Transistor Combination: NOT • Logic gates are constructed by combining transistors in complementary arrangements • Combine p&n transistors to make a NOT gate: CMOS Inverter : power source (1) power source (1) power source (1) — + p-gate p-gate p-gate closes stays open 0 0 1 1 output input n-gate n-gate n-gate closes — + stays open ground (0) ground (0) ground (0) 7

  8. Inverter V supply (aka logic 1) Function: NOT Symbol: in out out in Truth Table: (ground is logic 0) In Out 0 1 1 0 8

  9. Logic Gates Digital circuit that either allows • signal to pass through it or not Used to build logic functions • Seven basic logic gates: • AND, OR , NOT , NAND (not AND), Ge George Boole,(1815-1864) 1864) NOR (not OR), XOR Did you know? XNOR (not XOR) George Boole Inventor of the idea of logic gates. He was born in Lincoln, England and he was the son of a shoemaker. 9

  10. Logic Gates: Names, Symbols, Truth Tables A Out NOT: 0 1 A 1 0 A B Out A B Out A A 0 0 1 NAND: 0 0 0 AND: 0 1 1 B B 0 1 0 1 0 1 1 0 0 1 1 0 1 1 1 A B Out A B Out OR: A A 0 0 1 NOR: 0 0 0 B B 0 1 0 0 1 1 1 0 0 1 0 1 1 1 0 1 1 1 A B Out A B Out XOR: . A A XNOR: 0 0 1 0 0 0 B B 0 1 0 0 1 1 1 0 0 1 0 1 1 1 1 1 1 0

  11. NOR Gate V supply Function: NOR Symbol: A a B out b out A B Truth Table: A B out 0 0 1 0 1 0 1 0 0 1 1 0 11

  12. iClicker Question Which Gate is this? Function: V supply V supply Symbol: A B out B Truth Table: A B out A 0 0 (A) NOT 0 1 (B) OR 1 0 (C) XOR (D) AND 1 1 (E) NAND 12

  13. Abstraction • Hide complexity through simple abstractions § Simplicity • Box diagram represents inputs and outputs § Complexity • Hides underlying NMOS- and PMOS-transistors and atomic interactions Vdd a in out d out b Vss a d out out in 13 b

  14. iClicker Question Which Gate is this? Function: Symbol: a b Out Truth Table: A B out 0 0 (A) NOT 0 1 (B) OR 1 0 (C) XOR (D) AND 1 1 (E) NAND 14

  15. Universal Gates • NAND and NOR: § Can implement any function with NAND or just NOR gates § useful for manufacturing • NOT: a • AND: a b • OR: a b 15

  16. What does this logic circuit do? Function: Symbol: a Truth Table: Out d a b d Out 0 0 0 b 0 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 1 0 1 1 1 Multiplexing Like a Boss 16

  17. Goals for Today • From Switches to Logic Gates to Logic Circuits • Transistors, Logic Gates, Truth Tables • Logic Circuits § From Truth Tables to Circuits (Sum of Products) § Identity Laws • Logic Circuit Minimization § Algebraic Manipulations § Karnaugh Maps 17

  18. Logic Implementation How to implement a desired logic function? 1) Write minterms a b c out minterm 2) Write sum of products: 0 0 0 0 a b c OR of all minterms where out=1 0 0 1 1 a b c out = abc + abc + abc 0 1 0 0 a b c 0 1 1 1 a b c a 1 0 0 0 a b c b c 1 0 1 1 a b c out 1 1 0 0 a b c 1 1 1 0 a b c Any combinational circuit can be implemented in two levels of logic (ignoring inverters) 18

  19. Logic Equations NOT: = ā = !a = ¬ a NAND: AND: = a · b = a & b = a Ù b (a b) = !(a & b) = ¬ (a Ù b) OR: = a + b = a | b = a Ú b NOR: (a + b) = !(a | b) = ¬ (a Ú b) XOR: = a Å b = a b + āb XNOR: (a ⨁ b) = ab + ab Logic Equations § Constants: true = 1, false = 0 § Variables: a, b, out, … § Operators (above): AND, OR, NOT, etc. 19

  20. Identities Identities useful for manipulating logic equations • For optimization & ease of implementation a + 0 = a a + 1 = 1 a + ā = 1 a · 0 = 0 a · 1 = a a · ā = 0 20

  21. Identities Identities useful for manipulating logic equations • For optimization & ease of implementation ( a + b ) = a • b A A ↔ B ( ab ) = a + b B A A ↔ B B a + a b = a a (b+c) = ab + ac a ( b + c ) = a + b • c 21

  22. Goals for Today • From Switches to Logic Gates to Logic Circuits • Transistors, Logic Gates, Truth Tables • Logic Circuits § Identity Laws § From Truth Tables to Circuits (Sum of Products) • Logic Circuit Minimization § No details this semester, but quick discussion of what this is and why you’d do it. 22

  23. Checking Equality w/Truth Tables circuits ↔ truth tables ↔equations Example: (a+b)(a+c) = a + bc a b c (a+b) LHS (a+c) RHS bc 0 0 0 0 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 1 0 1 1 1 23

  24. Checking Equality w/Truth Tables circuits ↔ truth tables ↔equations Example: (a+b)(a+c) = a + bc a b c (a+b) LHS (a+c) RHS bc 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 24

  25. Summary • Most modern devices made of billions of transistors § You will build a processor in this course! § Modern transistors made from semiconductor materials § Transistors used to make logic gates and logic circuits • We can now implement any logic circuit § Use P- & N-transistors to implement NAND/NOR gates § Use NAND or NOR gates to implement the logic circuit § Efficiently : use K-maps to find required minimal terms 25

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