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

Direct Page Indirect Addressing: Difference between revisions

From SnesLab
Jump to: navigation, search
(simple admodes category)
(→‎References: de n'd page number)
Line 21: Line 21:
=== References ===
=== References ===
* [[Eyes & Lichty]] page 393, https://archive.org/details/0893037893ProgrammingThe65816/page/393
* [[Eyes & Lichty]] page 393, https://archive.org/details/0893037893ProgrammingThe65816/page/393
* page 128, lbid: https://archive.org/details/0893037893ProgrammingThe65816/page/n154
* page 128, lbid: https://archive.org/details/0893037893ProgrammingThe65816/page/128
* section 3.5.16 of 65c816 datasheet, https://westerndesigncenter.com/wdc/documentation/w65c816s.pdf
* section 3.5.16 of 65c816 datasheet, https://westerndesigncenter.com/wdc/documentation/w65c816s.pdf



Revision as of 00:23, 24 July 2024

Direct Page Indirect Addressing is supported by eight instructions:

  • ADC (opcode 72)
  • AND (opcode 32)
  • CMP (opcode D2)
  • EOR (opcode 52)
  • LDA (opcode B2)
  • ORA (opcode 12)
  • SBC (opcode F2)
  • STA (opcode 92)

Syntax

LDA (dp)

See Also

References