Address Mode - Zero Page Indirect
From NerdConsole
Jump to navigationJump to search
Zero Page Indirect
Uses a value found in the zero page at the specified address and the next byte to form an address that will be worked on.
Instructions that use this address mode:
Op | Inst | Description |
---|---|---|
$12 | ORA | Bitwise OR with Accumulator |
$32 | AND | Bitwise AND with Accumulator |
$52 | EOR | Bitwise Exclusive OR |
$72 | ADC | Add with Carry |
$92 | STA | Store Accumulator |
$B2 | LDA | Load Accumulator |
$D2 | CMP | Compare with Accumulator |
$F2 | SBC | Subtract with Carry |
Return to the Address Modes table or the OpCodes Table.