A <- A | n
OR
n
| b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | |
|---|---|---|---|---|---|---|---|---|
| 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | $F6 |
| n | ||||||||
A logical OR operation is performed between the n integer and the contents of the Accumulator, the results are stored in the Accumulator.
| S | is set if result is negative, otherwise it is reset. |
| Z | is set if result is 0, otherwise it is reset. |
| H | is reset. |
| P/V | is reset if overflow, otherwise it is reset |
| N | is reset. |
| C | is reset. |
If the Accumulator contains $12 (0001 0010), then upon the execution of
OR $48
the Accumulator contains $5A (0101 1010).