ANI
ANI means AND immediate. The execution of this instruction will AND the accumulator contents with the immediate byte that follows the op code.
Figure 2 |
Example:
From Figure 2, the (a) accumulator content is ANDed with (b) the immediate value C7H and (c) the result is 86H which is stored in the accumulator.
ORI
ORI means OR immediate. It tells the computer to OR the accumulator contents with the immediate byte that follows the op code.Example:
XRI
XRI is the mnemonic for XOR immediate. It will XOR the accumulator contents with the immediate byte that follows the op code.Example:
If the accumulator content is given by Figure 2, then executing XRI 1BH will XOR (a) 96H with the (b) immediate byte 1BH to produce (c) 8CH which will be stored in the accumulator.
Previous topic:
SAP-2 Logic Instructions
Reference:
Brown, J. A., & Malvino, A. P. (1992, 3rd edition). Digital Computer Electronics. Career Education, page 184.