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
(ASM category)
(→‎References: hid archive URL for E&L)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
Supported by:
'''Absolute Indexed Indirect Addressing''' is supported by two instructions:


* [[JMP]]
* [[JMP]] (opcode 7C)
* [[JSR]]
* [[JSR]] (opcode FC)


=== Reference ===
==== Syntax ====
* [[Eyes & Lichty]] page 382, https://archive.org/details/0893037893ProgrammingThe65816/page/n408
<pre>
JMP (addr, X)
JSR (addr, X)
</pre>
 
=== See Also ===
* [[Absolute Addressing]]
 
=== References ===
* [[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: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