From WikiChip
Difference between revisions of "or gate"

(Created page with "{{logic gates}} 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 inpu...")
 
m (Inject moved page OR gate to or gate)
(No difference)

Revision as of 04:46, 8 November 2015

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