Address Mode - Absolute Indexed X
From NerdConsole
Jump to navigationJump to search
Absolute Indexed X
Add the value in the X register to the specified address to determine which byte to use.
Instructions that use this address mode:
Op | Inst | Description |
---|---|---|
$1D | ORA | Bitwise OR with Accumulator |
$1E | ASL | Arithmetic Shift Left |
$3C | BIT | Test Bits |
$3D | AND | Bitwise AND with Accumulator |
$3E | ROL | Rotate Left |
$5D | EOR | Bitwise Exclusive OR |
$5E | LSR | Logical Shift Right |
$7D | ADC | Add with Carry |
$7E | ROR | Rotate Right |
$9D | STA | Store Accumulator |
$9E | STZ | Store Zero to Memory |
$BC | LDY | Load Y Register |
$BD | LDA | Load Accumulator |
$DD | CMP | Compare with Accumulator |
$DE | DEC | Decrement Memory |
$FD | SBC | Subtract with Carry |
$FE | INC | Increment Memory |
Return to the Address Modes table or the OpCodes Table.