Description:
Performs logical Exclusive OR on the bits of the given and the accumulator. The result remains in the accumulator. The bits of the result take on a value of 1 when the corresponding bits of the given and the accumulator are different.
EOR function:
A | B | A EOR B |
1 | 1 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
0 | 0 | 0 |
Example:
|