We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS
Implied Addressing: Difference between revisions
From SnesLab
(opcode AA) |
(opcode A8) |
||
Line 7: | Line 7: | ||
* [[INY]] (opcode C8) | * [[INY]] (opcode C8) | ||
* [[TAX]] (opcode AA) | * [[TAX]] (opcode AA) | ||
* [[TAY]] | * [[TAY]] (opcode A8) | ||
* [[TCD]] | * [[TCD]] | ||
* [[TSC]] | * [[TSC]] |
Revision as of 23:15, 26 June 2024
There are three types of Implied Addressing on the 65c816:
Type 1 - The register(s) to be operated on are implied in the mnemonic: (17 instructions)
- DEX (opcode CA)
- DEY (opcode 88)
- INX (opcode E8)
- INY (opcode C8)
- TAX (opcode AA)
- TAY (opcode A8)
- TCD
- TSC
- TDC
- TSC
- TSX
- TXA
- TXS
- TXY
- TYA
- TYX
- XBA
Type 2 - The flag(s) to be operated on are implied in the mnemonic: (8 instructions)
Type 3 - Neither flags nor registers operated on: (4 instructions)
All implied instructions except for WDM are one byte long.