From WikiChip
OR Gate
Revision as of 04:51, 8 November 2015 by Inject (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Logic gates

Basic gates

Compound gates

Other topics

v · d · e

The OR gate, is a basic logic gate that implements logical disjunction.

Functionality

The OR gate outputs a HIGH if at least one of its inputs is HIGH; otherwise it outputs a LOW. The OR gate can be expressed as \( Q = A \lor B = A + B \).

OR Gate
A B Q
0 0 0
0 1 1
1 0 1
1 1 1