數位邏輯-基本邏輯閘

Digital logic – Basic logic gates

NOT Gate:

Also known as Inverter, a logic gate which implements logical negation.

Symbol:
NOT Gate
INPUT OUTPUT
 A   F
 0   1
 1   0
Bollinger Algebra :
f=A ̅ or f=A’

OR Gate:

A HIGH output results if one or both the inputs to the gate are HIGH.

Symbol:
OR Gate
INPUT OUTPUT
A B F
0 0 0
0 1 1
1 0 1
1 1 1
Bollinger Algebra :
f=A+B
OR Function
Encoder:
C=A4+A5+A6+A7
B=A2+A3+A6+A7
A=A1+A3+A5+A7
OR Function
Expand to 3 inputs.

AND Gate:

A HIGH output results only if all the inputs to the AND gate are HIGH.

Symbol:
AND Gate
INPUT OUTPUT
A B F
0 0 0
0 1 0
1 0 0
1 1 1
Bollinger Algebra :
f=AB
AND Function
Data transfer and erase.
AND Function
2 to 4 decoder.
AND Function
Expand to 3 inputs.

NOR Gate:

A HIGH output results if both the inputs to the gate are LOW.

Symbol:
NOR Gate
INPUT OUTPUT
A B F
0 0 1
0 1 0
1 0 0
1 1 0
Bollinger Algebra :
f=f ̅=(A+B) ̅
NOR Function
Replace NOT with NOR.
NOR Function
Replace AND with NOR.
NOR Function
Expand to 3 inputs.

NAND Gate:

A LOW output results only if all the inputs to the gate are HIGH.

Symbol:
NAND Gate
INPUT OUTPUT
A B F
0 0 1
0 1 1
1 0 1
1 1 0
Bollinger Algebra :
f=(AB) ̅
NAND Function
Replace NOT with NAND.
NAND Function
Replace OR with NAND.
NAND Function
Expand to 3 inputs.

XOR Gate:

A true output results if one, and only one, of the inputs to the gate is true.

Symbol:
XOR Gate
INPUT OUTPUT
A B F
0 0 0
0 1 1
1 0 1
1 1 0
Bollinger Algebra :
f=A⊕B
=A ̅B+AB ̅
=(A ̅+B ̅ )(A+B)
XOR Function
X=0 Buffered output
X=1 Inverted output
XOR Function
Expand to 3 inputs.

XNOR Gate:

A high output results if both of the inputs to the gate are the same.

Symbol:
XNOR Gate
INPUT OUTPUT
A B F
0 0 1
0 1 0
1 0 0
1 1 1
Bollinger Algebra :
f=(A⊕B) ̅
=A⊙B
=(AB) ̅+AB
=(A ̅+B)(A+B ̅ )
XNOR Function
X=0 Inverted output
X=1 Buffered output

發表留言

使用 WordPress.com 設計專業網站
立即開始使用