Address Mode - Zero Page Indirect Pre-indexed X

From NerdConsole
Jump to navigationJump to search

Zero Page Indirect Pre-indexed X

Uses a value found in the zero page at the specified address plus the value in the X register and the next byte to form an address that will be worked on.

Instructions that use this address mode:

Op Inst Description
$01 ORA Bitwise OR with Accumulator
$21 AND Bitwise AND with Accumulator
$41 EOR Bitwise Exclusive OR
$61 ADC Add with Carry
$81 STA Store Accumulator
$A1 LDA Load Accumulator
$C1 CMP Compare with Accumulator
$E1 SBC Subtract with Carry

Return to the Address Modes table or the OpCodes Table.