Logic Gates

The building blocks for integrated circuits and electronics. A logic gate is the electrical implementation of boolean expressions.

GateI/OSymbol
NOT
AOutput
01
10
AND
ABOutput
000
010
100
111
NAND
ABOutput
001
011
101
110
OR
ABOutput
000
011
101
111
NOR
ABOutput
001
010
100
110
XOR
ABOutput
000
011
101
110
XNOR
ABOutput
001
010
100
111
IMPLY
ABOutput
001
011
100
111

Combining these basic building blocks we can achieve complex functionality.

CircuitDescriptionDiagram
SR LatchSet / reset latch is a simple circuit to preserve state.