Address Mode - Zero Page Indexed X
From NerdConsole
Jump to navigationJump to search
Zero Page Indexed X
Add the value in the X register to the specified zero page address to determine which byte to use.
Instructions that use this address mode:
Op | Inst | Description |
---|---|---|
$15 | ORA | Bitwise OR with Accumulator |
$16 | ASL | Arithmetic Shift Left |
$34 | BIT | Test Bits |
$35 | AND | Bitwise AND with Accumulator |
$36 | ROL | Rotate Left |
$55 | EOR | Bitwise Exclusive OR |
$56 | LSR | Logical Shift Right |
$74 | STZ | Store Zero to Memory |
$75 | ADC | Add with Carry |
$76 | ROR | Rotate Right |
$94 | STY | Store Y Register |
$95 | STA | Store Accumulator |
$B4 | LDY | Load Y Register |
$B5 | LDA | Load Accumulator |
$D5 | CMP | Compare with Accumulator |
$D6 | DEC | Decrement Memory |
$F5 | SBC | Subtract with Carry |
$F6 | INC | Increment Memory |
Return to the Address Modes table or the OpCodes Table.