SUBI

From Intellivision Wiki
Jump to: navigation, search
Instruction NameSubtract Immediate
MnemonicSUBI
CP1610 Clock Cycles8 or 10
InterruptibleYes
Opcode Range$0338-$033F
Input FlagsNone
Output FlagsSign Flag, Zero Flag, Overflow Flag, Carry Flag

The Subtract Immediate (SUBI) instruction subtracts the value at the address immediately following the opcode from the value in the specified destination register, stores the result in the destination register, and sets or clears the Sign Flag, Zero Flag, Overflow Flag, and Carry Flag according to the result. Note that this is instruction is really just a variant of the Subtract Indirect instruction using R7 as the address register. See the Subtract Indirect documentation for more information.

   0000:0011:0011: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