Digital Electronics - PowerPoint PPT Presentation

About This Presentation
Title:

Digital Electronics

Description:

Title: No Slide Title Author: Asif Shakur Last modified by: Information Technology Created Date: 5/26/2003 4:20:09 PM Document presentation format – PowerPoint PPT presentation

Number of Views:141
Avg rating:3.0/5.0
Slides: 17
Provided by: Asif155
Category:

less

Transcript and Presenter's Notes

Title: Digital Electronics


1
Digital Electronics
2
Chapter 3
Gate-Level Minimization
3
Karnaugh Maps
Simplify F A'B'C A'BC' AB'CA'BC ABC
4
K-Map
Simplify F A'B'C A'BC' AB'CA'BC ABC
F C A'B
5
K-Map with dont care
Simplify F(w,x,y,z) S (1,3,7,11,15) d(w,x,y,z)
S (0,2,5)
F z (y w' )
6
DeMorgans Picture!
Two Equivalent Representations
7
How Bubbles Move !
F AB CD
Three equivalent representations of F AB CD
8
NAND Implementation
F xy' x'y z
9
Designing for Equivalence
Design a circuit to check if x y
10
Hint Review XOR and XNOR
XNOR will be high if x y
11
Odd and Even Functions
(a) Checks for odd number of 1s (b) Checks for
even number of 1s
12
Parity Generator / Checker
Even Parity Generator Even Parity
Checker P 1 if x,y,z have odd number of 1s so
that the four bits, x, y, z, and P have an even
number of 1s C 1 if there is error, that is if
the four bits received have an odd number of 1s
13
VHDL
Verilog Hardware Description Language
// A simple example module my_example
(A,B,C,x,y) input A,B,C output x,y wire e and
g1 (e,A,B) not g2 (y,C) or g3 (x,e,y) endmodule
14
Comments on my_example
// indicates a comment line statements are
terminated with endmodule has no
semicolon keywords like module, input etc. must
be in lowercase gate declarations must have the
output first then the inputs separated by commas
15
Circuit Diagram of my_example
16
Thats All Folks!
Write a Comment
User Comments (0)
About PowerShow.com