Description:
Performs logical ALBO (dissuasion) 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:
Until | B | (a) EOR (b) |
1 | 1 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
0 | 0 | 0 |
Example:
|