Download presentation
Presentation is loading. Please wait.
Published byElisabeth Armstrong Modified over 8 years ago
1
Basic Logic Gates By : Ashima Wadhwa Assistant Professor (giBS)
2
Digital Systems Digital vs. Analog Waveforms Analog: values vary over a broad range continuously Digital: only assumes discrete values
3
Algebra: variables, values, operations In Boolean algebra, the values are the symbols 0 and 1 If a logic statement is false, it has value 0 If a logic statement is true, it has value 1 Operations: AND, OR, NOT Boolean Algebra and Logical Operators
4
Logic Gates A computer carries out all operations internally by means of combination of signals passing through standard blocks of built in circuits known as logic gates. A Logic Gate is an electronic circuit that operates on one or more input signals to produce standard output signals.
5
Basic Logic Gates NOT, AND, and OR Gates NAND and NOR Gates Exclusive-OR (XOR) Gate Exclusive-NOR Gate
6
NOT Gate -- Inverter X Y 0101 1010
7
Y = ~X Y = !X Y = not X Y = X’ Y = X not(Y,X) NOT
8
X~X~~X = X X ~X ~~X 0 1 0 1 0 1
9
AND Gate AND X Y Z Z = X & Y X Y Z 0 0 0 0 1 0 1 0 0 1 1 1
10
X & Y X and Y X Y X * Y XY and(Z,X,Y) AND U V
11
OR Gate OR X Y Z Z = X | Y X Y Z 0 0 0 0 1 1 1 0 1 1 1 1
12
OR X | Y X # Y X or Y X + Y X V Y X U Y or(Z,X,Y)
13
Basic Logic Gates and Basic Digital Design NOT, AND, and OR Gates NAND and NOR Gates Exclusive-OR (XOR) Gate Exclusive-NOR Gate
14
NAND Gate NOT-AND X Y Z W = X & Y Z = ~W = ~(X & Y) X Y W Z 0 0 0 1 0 1 1 0 0 1 1 1 1 0 W
15
NAND Gate NAND X Y Z X Y Z 0 0 1 0 1 1 1 0 1 1 1 0 Z = ~(X & Y) nand(Z,X,Y)
16
NOR Gate NOT-OR X Y W = X | Y Z = ~W = ~(X | Y) X Y W Z 0 0 0 1 0 1 1 0 1 0 1 1 1 0 Z W
17
NOR Gate NOR X Y Z X Y Z 0 0 1 0 1 0 1 0 0 1 1 0 Z = ~(X | Y) nor(Z,X,Y)
18
Basic Logic Gates and Basic Digital Design NOT, AND, and OR Gates NAND and NOR Gates Exclusive-OR (XOR) Gate Exclusive-NOR Gate
19
Exclusive-OR Gate X Y Z XOR X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 Z = X ^ Y xor(Z,X,Y) AOB = ~A.B + A. ~B
20
XOR X ^ Y X $ Y X @ Y xor(Z,X,Y)
21
Basic Logic Gates and Basic Digital Design NOT, AND, and OR Gates NAND and NOR Gates Exclusive-OR (XOR) Gate Exclusive-NOR Gate
22
X Y Z XNOR X Y Z 0 0 1 0 1 0 1 0 0 1 1 1 Z = ~(X ^ Y) Z = X ~^ Y xnor(Z,X,Y) A O B=A.B + ~A.~B
23
XNOR X ~^ Y !(X $ Y) X @ Y xnor(Z,X,Y)
24
Queries?
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.