We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

Absolute Indexed Indirect Addressing: Difference between revisions

From SnesLab
Jump to: navigation, search
(Category:Inherited from 6502)
(→‎References: hid archive URL for E&L)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Supported by two instructions:
'''Absolute Indexed Indirect Addressing''' is supported by two instructions:


* [[JMP]] (opcode 7C)
* [[JMP]] (opcode 7C)
* [[JSR]] (opcode FC)
* [[JSR]] (opcode FC)
==== Syntax ====
<pre>
JMP (addr, X)
JSR (addr, X)
</pre>


=== See Also ===
=== See Also ===
* [[Absolute Addressing]]
* [[Absolute Addressing]]


=== Reference ===
=== References ===
* [[Eyes & Lichty]] page 382, https://archive.org/details/0893037893ProgrammingThe65816/page/n408
* [[Eyes & Lichty]], [https://archive.org/details/0893037893ProgrammingThe65816/page/382 page 382]
* section 3.5.2 of 65c816 datasheet, https://westerndesigncenter.com/wdc/documentation/w65c816s.pdf


[[Category:ASM]]
[[Category:ASM]]
[[Category:Addressing Modes]]
[[Category:Addressing Modes]]
[[Category:Inherited from 6502]]
[[Category:Complex Admodes]]
[[Category:65c02 additions]]

Latest revision as of 03:00, 9 August 2024

Absolute Indexed Indirect Addressing is supported by two instructions:

  • JMP (opcode 7C)
  • JSR (opcode FC)

Syntax

JMP (addr, X)
JSR (addr, X)

See Also

References