+ All Categories
Home > Documents > Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the...

Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the...

Date post: 31-Dec-2015
Category:
Upload: emma-holland
View: 227 times
Download: 0 times
Share this document with a friend
48
Gate-Level Minimization Chapter 3
Transcript
Page 1: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

Gate-Level Minimization

Chapter 3

Page 2: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

2Digital Circuits

3-1 The Map Method

The complexity of the digital logic gates the complexity of the algebraic expression

Logic minimization algebraic approaches: lack specific rules the Karnaugh map

a simple straight forward procedure a pictorial form of a truth table applicable if the # of variables < 7

A diagram made up of squares each square represents one minterm

Page 3: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

3Digital Circuits

Boolean function sum of minterms sum of products (or product of sum) in the simplest

form a minimum number of terms a minimum number of literals The simplified expression may not be unique

Page 4: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

4Digital Circuits

Two-Variable Map

A two-variable map four minterms x' = row 0; x = row 1 y' = column 0; y = column 1 a truth table in square diagram xy x+y =

Page 5: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

5Digital Circuits

A three-variable map

eight minterms the Gray code sequence any two adjacent squares in the map differ by only

on variable primed in one square and unprimed in the other e.g., m5 and m7 can be simplified

m5+ m7 = xy'z + xyz = xz (y'+y) = xz

Page 6: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

6Digital Circuits

m0 and m2 (m4 and m6) are adjacent

m0+ m2 = x'y'z' + x'yz' = x'z' (y'+y) = x'z'

m4+ m6 = xy'z' + xyz' = xz' (y'+y) = xz'

Page 7: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

7Digital Circuits

Example 3-1 F(x,y,z) = (2,3,4,5) F = x'y + xy'

Page 8: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

8Digital Circuits

Example 3-2 F(x,y,z) = (3,4,6,7) = yz+ xz'

Page 9: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

9Digital Circuits

Four adjacent squares 2, 4, 8 and 16 squares m0+m2+m4+m6 = x'y'z'+x'yz'+xy'z'+xyz'

= x'z'(y'+y) +xz'(y'+y)= x'z' + xz‘ = z'

m1+m3+m5+m7 = x'y'z+x'yz+xy'z+xyz=x'z(y'+y) + xz(y'+y)=x'z + xz = z

Page 10: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

10Digital Circuits

Example 3-3 F(x,y,z) = (0,2,4,5,6) F = z'+ xy'

Page 11: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

11Digital Circuits

Example 3-4 F = A'C + A'B + AB'C + BC express it in sum of minterms find the minimal sum of products expression

Page 12: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

12Digital Circuits

3-2 Four-Variable Map

The map 16 minterms combinations of 2, 4, 8, and 16 adjacent squares

Page 13: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

13Digital Circuits

Example 3-5 F(w,x,y,z) = (0,1,2,4,5,6,8,9,12,13,14)

F = y'+w'z'+xz'

Page 14: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

14Digital Circuits

Prime Implicants all the minterms are covered minimize the number of terms a prime implicant: a product term obtained by

combining the maximum possible number of adjacent squares (combining all possible maximum numbers of squares)

essential: a minterm is covered by only one prime implicant

the essential P.I. must be included

Page 15: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

15Digital Circuits

the simplified expression may not be unique F = BD+B'D'+CD+AD

= BD+B'D'+CD+AB'= BD+B'D'+B'C+AD

= BD+B'D'+B'C+AB'

Page 16: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

16Digital Circuits

3-3 Five-Variable Map

Map for more than four variables becomes complicated five-variable map: two four-variable map (one on

the top of the other)

Page 17: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

17Digital Circuits

Example 3-7 F = (0,2,4,6,9,13,21,23,25,29,31)

F = A'B'E'+BD'E+ACE

Page 18: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

18Digital Circuits

3-4 Product of Sums Simplification

Approach #1 Simplified F' in the form of sum of products Apply DeMorgan's theorem F = (F')' F': sum of products => F: product of sums

Approach #2: duality combinations of maxterms (it was minterms) M0M1 = (A+B+C+D)(A+B+C+D')

= (A+B+C)+(DD')= A+B+C

CDAB 00 01 11 1000 M0 M1 M3 M2

01 M4 M5 M7 M6

11 M12 M13 M15 M14

10 M8 M9 M11 M10

Page 19: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

19Digital Circuits

Example 3-8 F = (0,1,2,5,8,9,10)

F' = AB+CD+BD' Apply DeMorgan's theorem; F=(A'+B')(C'+D')

(B'+D) Or think in terms of maxterms

Page 20: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

20Digital Circuits

Gate implementation of the function of Example 3-8

Page 21: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

21Digital Circuits

3-5 Don't-Care Conditions

The value of a function is not specified for certain combinations of variables BCD; 1010-1111: don't care

The don't care conditions can be utilized in logic minimization can be implemented as 0 or 1

Example 3-9 F (w,x,y,z) = (1,3,7,11,15) d(w,x,y,z) = (0,2,5)

Page 22: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

22Digital Circuits

F = yz + w'x'; F = yz + w'z F = (0,1,2,3,7,11,15) ; F = (1,3,5,7,11,15) either expression is acceptable

Also apply to products of sum

Page 23: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

23Digital Circuits

3-6 NAND and NOR Implementation

NAND gate is a universal gate can implement any digital system

Page 24: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

24Digital Circuits

Two graphic symbols for a NAND gate

Page 25: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

25Digital Circuits

Two-level Implementation

two-level logic NAND-NAND = sum of products Example: F = AB+CD+E F = ((AB)' (CD)' E')'

=AB+CD+E

Page 26: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

26Digital Circuits

The procedure simplified in the form of sum of products a NAND gate for each product term; the inputs to

each NAND gate are the literals of the term a single NAND gate for the second sum term

Page 27: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

27Digital Circuits

Example 3-10

Page 28: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

28Digital Circuits

Multilevel NAND Circuits

Boolean function implementation AND-OR logic => NAND-NAND logic

AND => NAND + inverter OR: inverter + OR = NAND

Page 29: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

29Digital Circuits

Page 30: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

30Digital Circuits

NOR Implementation

NOR function is the dual of NAND function The NOR gate is also universal

Page 31: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

31Digital Circuits

Two graphic symbols for a NOR gate

Page 32: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

32Digital Circuits

Boolean-function implementation OR => NOR + INV AND

INV + AND = NOR

Page 33: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

33Digital Circuits

Page 34: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

34Digital Circuits

Page 35: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

35Digital Circuits

3-7 Other Two-level Implementations

Wired logic a wire connection between the outputs of two gates open-collector TTL NAND gates: wired-AND logic the NOR output of ECL gates: wired-OR logic

Page 36: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

36Digital Circuits

16 possible combinations of two-level forms eight of them: degenerate forms = a single operation The eight nondegenerate forms

AND-OR, OR-AND, NAND-NAND, NOR-NOR, NOR-OR, NAND-AND, OR-AND, AND-OR

AND-OR and NAND-NAND = sum of products OR-AND and NOR-NOR = product of sums NOR-OR, NAND-AND, OR-AND, AND-OR = ?

Page 37: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

37Digital Circuits

AND-OR-Invert Implementation

AND-OR-INVERT (AOI) Implementation NAND-AND = AND-NOR = AOI F = (AB+CD+E)' F' = AB+CD+E (sum of products)

simplify F' in sum of products

Page 38: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

38Digital Circuits

OR-AND-INVERT (OAI) Implementation OR-NAND = NOR-OR = OAI F = ((A+B)(C+D)E)' F' = (A+B)(C+D)E (product of sums)

simplified F' in products of sum

Page 39: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

39Digital Circuits

Example 3-11 F' = x'y+xy'+z (F': sum of products) F = (x'y+xy'+z)' (F: AOI implementation)

F = x'y'z' + xyz' (F: sum of products) F' = (x+y+z)(x'+y'+z) (F': product of sums) F = ((x+y+z)(x'+y'+z))' (F: OAI)

Page 40: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

40Digital Circuits

Page 41: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

41Digital Circuits

3-8 Exclusive-OR Function

Exclusive-OR (XOR) xy = xy'+x'y

Exclusive-NOR (XNOR) (xy)' = xy + x'y'

Some identities x0 = x x1 = x' xx = 0 xx' = 1 xy' = (xy)' x'y = (xy)'

Commutative and associative AB = BA (AB) C = A (BC) = ABC

Page 42: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

42Digital Circuits

Implementations (x'+y')x + (x'+y')y = xy'+x'y = xy

Page 43: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

43Digital Circuits

Odd function

ABC = (AB'+A'B)C' +(AB+A'B')C = AB'C'+A'BC'+ABC+A'B'C

= (1,2,4,7) an odd number of 1's

Page 44: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

44Digital Circuits

Logic diagram of odd and even functions

Page 45: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

45Digital Circuits

Four-variable Exclusive-OR function ABCD = (AB’+A’B)(CD’+C’D)

= (AB’+A’B)(CD+C’D’)+(AB+A’B’)(CD’+C’D)

Page 46: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

46Digital Circuits

Parity Generation and Checking

Parity Generation and Checking a parity bit: P = xyz parity check: C = xyzP

C=1: an odd number of data bit error C=0: correct or an ever # of data bit error

Page 47: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

47Digital Circuits

HDL (Hardware Description Language)

Describe the design of digital systems in a textual form hardware structure function/behavior Timing

VHDL and Verilog HDL

Page 48: Gate-Level Minimization Chapter 3. Digital Circuits 2 3-1 The Map Method The complexity of the digital logic gates the complexity of the algebraic expression.

48Digital Circuits

A Top-Down Design Flow

Specification

RTL design andSimulation

Logic Synthesis

Gate Level Simulation

ASIC Layout FPGA Implementation


Recommended