5238-E P-7
SECTION 1 PROGRAM CONFIGURATIONS
Logical Operations
"a", "b", and "c" represent corresponding bits.
LE33013R0300300080001
If the two corresponding values agree, EOR outputs 0.
If the two values do not agree, EOR outputs 1.
LE33013R0300300080002
If both corresponding values are 0, OR outputs 0.
If not, OR outputs 1.
LE33013R0300300080003
If both corresponding values are 1, AND outputs 1.
If not, AND outputs 0.
LE33013R0300300080004
NOT inverts the value (from 0 to 1, and 1 to 0).
abc
000
011
101
110
abc
000
011
101
111
abc
000
010
100
111
ab
01
10
• Exclusive OR (EOR) c = a EOR b
• Logical OR (OR) c = a OR b
• Logical AND (AND) c = a AND b
• Negation (NOT) b = NOT a