![Okuma OSP-P200L Programming Manual Download Page 20](http://html1.mh-extra.com/html/okuma/osp-p200l/osp-p200l_programming-manual_3667818020.webp)
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).
a
b
c
0
0
0
0
1
1
1
0
1
1
1
0
a
b
c
0
0
0
0
1
1
1
0
1
1
1
1
a
b
c
0
0
0
0
1
0
1
0
0
1
1
1
a
b
0
1
1
0
•
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