Address Mode - Zero Page Indirect Post-indexed Y

From NerdConsole
Jump to navigationJump to search

Zero Page Indirect Post-indexed Y

Uses a value found in the zero page at the specified address and the next byte to form an address where the value in the Y register is then added to determine what will be worked on.

Instructions that use this address mode:

Op Inst Description
$11 ORA Bitwise OR with Accumulator
$31 AND Bitwise AND with Accumulator
$51 EOR Bitwise Exclusive OR
$71 ADC Add with Carry
$91 STA Store Accumulator
$B1 LDA Load Accumulator
$D1 CMP Compare with Accumulator
$F1 SBC Subtract with Carry

Return to the Address Modes table or the OpCodes Table.