1 / 15

Basic Digital Design

Basic Digital Design. Discussion D5.4 Section 13.6. Basic Digital Design. Sum-of-Products Design Product-of-Sums Design. Sum of Products Design Exclusive-OR Gate. XOR. X Y Z 0 0 0 0 1 1 1 0 1 1 1 0. X. Z. Y. Z = X ^ Y. Sum of Products Design. X Y minterms

Antony
Download Presentation

Basic Digital Design

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Basic Digital Design Discussion D5.4 Section 13.6

  2. Basic Digital Design • Sum-of-Products Design • Product-of-Sums Design

  3. Sum of Products Design Exclusive-OR Gate XOR X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 X Z Y Z = X ^ Y

  4. Sum of Products Design X Y minterms 0 0 m0 = ~X & ~Y 0 1 m1 = ~X & Y 1 0 m2 = X & ~Y 1 1 m3 = X & Y

  5. Sum of Products Design Design an XOR gate X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 m1 = ~X & Y m2 = X & ~Y Z = m1 | m2 = (~X & Y) | (X & ~Y)

  6. Sum of Products: Exclusive-OR ~X & Y Z = (~X & Y) | (X & ~Y) X & ~Y

  7. Precedence of Logical Operators • All ~ operations are done first • All & operations are done next • All | operations are done last Z = (~X & Y) | (X & ~Y) = ~X & Y | X & ~Y

  8. Problem

  9. Problem F = ~X & ~Y | X & Y

  10. Basic Digital Design • Sum-of-Products Design • Product-of-Sums Design

  11. Product of Sums Design Maxterms: A maxterm is NOT a minterm maxterm M0 = NOT minterm m0 M0 = ~m0 = ~(~X & ~Y) = ~~(~~X | ~~Y) = X | Y

  12. Product of Sums Design X Y minterms maxterms 0 0 m0 = ~X & ~Y M0 = ~m0 = X | Y 0 1 m1 = ~X & Y M1 = ~m1 = X | ~Y 1 0 m2 = X & ~Y M2 = ~m2 = ~X | Y 1 1 m3 = X & Y M3 = ~m3 = ~X | ~Y

  13. Product of Sums Design Design an XOR gate X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 Z is NOT minterm m0 AND it is NOT minterm m3

  14. Product of Sums Design Design an XOR gate X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 M0 = X | Y M3 = ~X | ~Y Z = M0 & M3 = (X | Y) & (~X | ~Y)

  15. X Y X | Y Z ~X | ~Y X ~X Y ~Y Z = (X | Y) & (~X | ~Y) Product of Sums: Exclusive-OR

More Related