Address Mode - Absolute Indexed Y

From NerdConsole
Revision as of 20:29, 31 January 2024 by NerdOfEpic (talk | contribs) (Created page with "'''Absolute Indexed Y''' Add the value in the Y register to the specified address to determine which byte to use. '''Instructions that use this address mode:''' {| class='wikitable' ! Op !! Inst !! Description |- | $19 || ORA || Bitwise OR with Accumulator |- | $39 || AND || Bitwise AND with Accumulator |- | $59 || EOR || Bitwise Exclusive OR |- | $79 || ADC || Add with Carry |- | $99 || OpCode - STA...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Absolute Indexed Y

Add the value in the Y register to the specified address to determine which byte to use.

Instructions that use this address mode:

Op Inst Description
$19 ORA Bitwise OR with Accumulator
$39 AND Bitwise AND with Accumulator
$59 EOR Bitwise Exclusive OR
$79 ADC Add with Carry
$99 STA Store Accumulator
$B9 LDA Load Accumulator
$BE LDX Load X Register
$D9 CMP Compare with Accumulator
$F9 SBC Subtract with Carry

Return to the Address Modes table or the OpCodes Table.