XORI

From Intellivision Wiki
Jump to: navigation, search
Instruction NameXor Immediate
MnemonicXORI
CP1610 Clock Cycles8 or 10
InterruptibleYes
Opcode Range$03F8-$03FF
Input FlagsNone
Output FlagsSign Flag and Zero Flag

The Xor Immediate (XORI) instruction performs a bitwise XOR between the value at the address immediately following the opcode and the value in the specified destination register, stores the result in the destination register, and sets or clears the Sign Flag and Zero Flag according to the result. Note that this is instruction is really just a variant of the Xor Indirect instruction using R7 as the address register. See the Xor Indirect documentation for more information.

   0000:0011:1111:1ddd
where: ddd indicates the destination register such that: ddd == 000 indicates register R0 ddd == 001 indicates register R1 ddd == 010 indicates register R2 ddd == 011 indicates register R3 ddd == 100 indicates register R4 ddd == 101 indicates register R5 ddd == 110 indicates register R6 ddd == 111 indicates register R7