lecture 7
play

Lecture 7 Logistics HW2 due Wednesday --- Friday? Lab3 this week - PDF document

Lecture 7 Logistics HW2 due Wednesday --- Friday? Lab3 this week Lab3 this week 4/25 lecture canceled Last lecture Logic simplification Boolean cubes Karnaugh maps Today Today Continuing on K-maps with


  1. Lecture 7 � Logistics � HW2 due Wednesday --- Friday? � Lab3 this week � Lab3 this week � 4/25 lecture canceled � Last lecture � Logic simplification � Boolean cubes � Karnaugh maps � Today � Today � Continuing on K-maps with examples (do this later) � Don’t cares � k-maps for POS minimization CSE370, Lecture 7 1 Incompletely specified functions: Don’t cares � Functions of n inputs have 2 n possible configurations � Some combinations may be unused � Call unused combinations “don’t cares” � Call unused combinations don t cares � Exploit don’t cares during logic minimization � Don’t care ≠ no output � Example: A BCD increment-by-1 � Function F computes the next number in a BCD sequence � If the input is 0010 2 , the output is 0011 2 � BCD encodes decimal digits 0–9 as 0000 2 –1001 2 g 2 2 � Don’t care about binary numbers 1010 2 –1111 2 CSE370, Lecture 7 2

  2. Truth table for a BCD increment-by-1 INPUTS OUTPUTS A B C D W X Y Z off-set for W: m0–m6, m9 off set for W: m0 m6, m9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 1 0 1 1 0 on-set for W: m7 and m8 0 1 1 0 0 1 1 1 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 1 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 X X X X Don't care set for W: 1 0 1 1 X X X X 1 1 0 0 X X X X We don't care 1 1 0 1 X X X X about the output values 1 1 1 0 X X X X 1 1 1 1 X X X X CSE370, Lecture 7 3 Notation � Don't cares in canonical forms � Three distinct logical sets: { on} , { off} , { don’t care} � Canonical representations of a BCD increment-by-1 � Minterm expansion � W = m7+ m8+ d10+ d11+ d12+ d13+ d14+ d15 = Σ m(7,8) + d(10,11,12,13,14,15) � Maxterm expansion � W = M0•M1•M2•M3•M4•M5•M6•M9•D10•D11•D12•D13•D14•D15 = Π M(0,1,2,3,4,5,6,9) • D(10,11,12,13,14,15) � In K-maps, can treat ‘don't cares’ as 0s or 1s � Depending on which is more advantageous CSE370, Lecture 7 4

  3. Example: with don’t cares � F(A,B,C,D) = Σ m(1,3,5,7,9) + d(6,12,13) � F = A'D + B'C'D � F = A D + B CD without using don't cares without using don t cares � F = A'D + C'D using don't cares A AB 00 01 11 10 CD Assign X = = "1" 00 0 0 X 0 ⇒ allows a 2-cube rather than a 1-cube 01 1 1 X 1 D 11 1 1 0 0 C 10 0 X 0 0 B CSE370, Lecture 7 5 POS minimization using k-maps � Using k-maps for POS minimization � Encircle the zeros in the map � Interpret indices complementary to SOP form � Interpret indices complementary to SOP form A AB F = (B’+ C+ D)(B+ C+ D’)(A’+ B’+ C) 00 01 11 10 CD 00 1 0 0 1 Check using de Morgan’s on SOP 01 0 1 0 0 D F’ = BC’D’+ B’C’D+ ABC’ 11 1 1 1 1 C C (F’)’ = (BC’D’+ B’C’D+ ABC’)’ 10 1 1 1 1 (F’)’ = (BC’D’)’+ (B’C’D)’+ (ABC’)’ B F = (B’+ C+ D)(B+ C+ D’)(A’+ B’+ C) CSE370, Lecture 7 6

  4. K-maps minimization examples F(A,B,C,D) = Σ m(0,3,7,8,11,15) F(A,B,C) = Σ m(0,3,6,7) F(A,B,C) = F(A,B,C,D) = F'(A,B,C) = F’(A,B,C,D) = AB 00 01 11 10 CD 00 AB 01 01 00 00 01 11 10 01 11 10 C 0 11 1 10 CSE370, Lecture 7 7 Design example: a two-bit comparator A B C D LT EQ GT 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 A A AB < CD 1 0 1 0 0 LT B 1 1 1 0 0 AB = CD EQ 0 1 0 0 0 0 1 AB > CD C 0 1 0 1 0 GT 1 0 1 0 0 D 1 1 1 0 0 1 0 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 1 1 1 0 0 block diagram g 1 1 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 truth table 1 1 0 1 0 Need a 4-variable Karnaugh map for each of the 3 output functions CSE370, Lecture 7 8

  5. Design example: a two-bit comparator (con’t) K-map for LT K-map for EQ K-map for GT A A A AB AB AB 00 00 01 11 10 01 11 10 00 00 01 11 10 01 11 10 00 00 01 11 10 01 11 10 CD CD CD CD CD CD 00 1 0 0 0 00 0 1 1 1 00 0 0 0 0 01 01 01 0 1 0 0 0 0 1 1 1 0 0 0 D D D 11 11 11 0 0 1 0 0 0 0 0 1 1 0 1 C C C 10 10 10 0 0 0 1 0 0 1 0 1 1 0 0 B B B LT = A'B'D+ A'C+ B'CD GT = BC'D'+ AC'+ ABD' EQ = A'B'C'D'+ A'BC'D+ ABCD+ AB'CD' = (A xnor C)•(B xnor D) CSE370, Lecture 7 9 Design example: a two-bit comparator (con’t) � Two ways to implement EQ: Option 1: EQ = A B CD + A BCD+ ABCD+ AB CD EQ = A'B'C'D'+ A'BC'D+ ABCD+ AB'CD‘ A A B B C C D D 5 gates but they require lots of inputs Option 2 EQ EQ = (A xnor C) •(B xnor D) XNOR is constructed from 3 simple gates EQ 7 gates but they all have 2 inputs each CSE370, Lecture 7 10

  6. Design example: a two-bit comparator (con’t) Circuit schematics CSE370, Lecture 7 11 Design example: BCD increment by 1 I8 I4 I2 I1 O8 O4 O2 O1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 1 0 0 O1 I1 0 1 0 0 0 1 0 1 I2 O2 0 1 0 1 0 1 1 0 O4 I4 0 1 1 0 0 1 1 1 I8 O8 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 X X X X 1 0 1 1 X X X X block diagram g 1 1 1 1 0 0 0 0 X X X X X X X X 1 1 0 1 X X X X truth table 1 1 1 0 X X X X 1 1 1 1 X X X X Need a 4-variable Karnaugh map for each of the 4 output functions CSE370, Lecture 7 12

  7. Design example: BCD increment by 1 (con’t) I 8 I 8 O8 O4 0 1 X 0 0 0 X 1 O 8 = I 4 I 2 I 1 + I 8 I 1 ‘ 0 1 X 0 0 0 X 0 I 1 I 1 O 4 = I 4 I 2 ' + I 4 I 1 ' + I 4 'I 2 I 1 1 0 X X 0 1 X X I 2 I 2 0 1 X X 0 0 X X I 4 I 4 I 8 I 8 O 2 = I 8 'I 2 'I 1 + I 2 I 1 ‘ O2 O1 1 1 X 1 0 0 0 0 X 0 0 O O 1 = I 1 ' I ' 0 0 X 0 1 1 X 0 I 1 I 1 We greatly simplify 0 0 X X 0 0 X X the logic by using I 2 I 2 the don’t cares 1 1 X X 1 1 X X I 4 I 4 CSE370, Lecture 7 13 Design example: BCD increment by 1 (con’t) � Draw the circuit schematic � O 8 = I 4 I 2 I 1 + I 8 I 1 ' � O 4 = I 4 I 2 ' + I 4 I 1 ' + I 4 'I 2 I 1 � O 2 = I 8 'I 2 'I 1 + I 2 I 1 ' � O 1 = I 1 ' CSE370, Lecture 7 14

  8. Design example: a two-bit multiplier A2 A1 B2 B1 P8 P4 P2 P1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 P1 A1 0 1 0 0 0 0 0 0 A2 P2 0 1 0 0 0 1 P4 B1 1 0 0 0 1 0 B2 P8 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 1 0 1 1 0 block diagram g 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 truth table 1 0 0 1 1 0 1 1 1 0 0 1 Need a 4-variable Karnaugh map for each of the 4 output functions CSE370, Lecture 7 15 Two-bit multiplier (cont'd) A2 A2 A2A1 A2A1 00 01 11 10 00 01 11 10 B2B1 B2B1 P 4 = A 2 B 2 B 1 ' 00 00 0 0 0 0 0 0 0 0 + A 2 A 1 'B 2 P 8 = A 2 A 1 B 2 B 1 01 01 0 0 0 0 0 0 0 0 B1 B1 B1 B1 11 11 0 0 0 1 0 0 1 0 B2 B2 10 10 0 0 1 1 0 0 0 0 A1 A1 A2 A2 A2A1 A2A1 00 01 11 10 00 01 11 10 B2B1 B2B1 P 1 = A 1 B 1 P P 2 = A 2 'A 1 B 2 A 'A B 00 00 00 00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + A 1 B 2 B 1 ' 01 01 0 0 1 1 0 1 1 0 + A 2 B 2 'B 1 B1 B1 + A 2 A 1 'B 1 11 11 0 1 0 1 0 1 1 0 B2 B2 10 10 0 1 1 0 0 0 0 0 A1 A1

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