We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS
Eyes & Lichty
From SnesLab
(Redirected from E&L)
"Eyes & Lichty" is scene slang for the excellent manual "Programming the 65816 Including the 6502, 65C02, and 65802" by David Eyes & Ron Lichty. It may be the best unofficial textbook on SNES programming, due in no small part to the fact that the Ricoh 5A22 is based on the 65c816 and the SPC700 is based on the 6502.
Addressing Mode
Eyes & Lichty divides the 65c816's various addressing modes into two groups: simple and complex. Simple addressing modes are explained first and require the processor to do little effective address calculation. They are:
Simple Addressing Modes
- Immediate
- Absolute
- Direct Page
- Accumulator
- Implied
- Stack
- Direct Page Indirect
- Absolute Long
- Direct Page Indirect Long
- Block Move
see page 108
Complex Addressing Modes
- Absolute Indexed by X
- Absolute Indexed by Y
- Direct Page Indexed by X
- Direct Page Indexed by Y
- Direct Page Indirect Indexed by Y
- Direct Page Indexed Indirect by X
- Absolute Indexed Indirect
- Non-zero Direct Page
- Absolute Long Indexed by X
- Direct Page Indirect Long Indexed by Y
- Stack Relative
- Stack Relative Indirect Indexed by Y
see page 197
Eratta
Applicable to the 2015 edition:
- On page 498, opcode F5 has a "0" superscript on the # of cycles column.
- The stack diagram for RTI has the old status register value on the opposite side of the stack as the diagram for COP
- page 75 says the 65c816 has 25 different addressesing modes, but the datasheet says there are 24
- Page 94 says the 65c816 has three push instructions that do not alter registers: PEA, PEI, and PER. But there are more than three, for example PHA.
- PLB is not the only instruction that modifies the data bank register; MVP and MVN do too - see section 7.18 of the 65c816 datasheet
- In the section on accumulator addressing, a sentence implies that all read-modify-write instructions are unary, but TRB and TSB are not.
- page 497 recommends making sure the carry flag is already set, or to set it with SEC prior to doing a SBC to "avoid subtracting the carry flag" but it should say "to avoid subtracting one"
- Page 510 on TCD and page 512 on TDC mentions the direct page register, but this is missing from the index
- In the tables that show which MPU supports which instructions, an "X" denotes yes and a " " denotes no. Many readers would find a check mark less confusing.
- The Rockwell 65c02 does not have a direct page, but the four Rockwell instructions are listed as having Direct Page Addressing anyway "for consistency."
- The 65c02 datasheet does mention WAI and STP are supported (page 532 has them listed as unavailable)
- The addressing mode for WDM is missing, but the datasheet says it is Implied
- Assemblers are described as requiring the signature byte for COP, but on the next page it says the signature byte is optional
- The page on PLA has a typo that says the 65x pull instructions "set" the zero and negative flags; it should say "affect."
Quick Links
Part I Basics
Part II Architecture
- Architecture of the 6502
- Architecture of the 65C02
- Sixteen-Bit Architecture: The 65816 and the 65802
Part III Tutorial
- SEP, REP, and Other Details
- First Examples: Moving Data
- The Simple Addressing Modes
- The Flow of Control
- Built-In Arithmetic Functions
- Logic and Bit Manipulation Operations
- The Complex Addressing Modes
- The Basic Building Block: The Subroutine
- Interrupts and System Control Instructions
Part IV Applications
- Selected Code Samples
- DEBUG16 - A 65816 Programming Tool
- Design and Debugging
- Reference
- The Addressing Modes
- The Instruction Sets
- ADC
- AND
- ASL
- BCC
- BCS
- BEQ
- BIT
- BMI
- BNE
- BPL
- BRA
- BRK
- BRL
- BVC
- BVS
- CLC
- CLD
- CLI
- CLV
- CMP
- COP
- CPX
- CPY
- DEC
- DEX
- DEY
- EOR
- INC
- INX
- INY
- JMP
- JSL
- JSR
- LDA
- LDX
- LDY
- LSR
- MVN
- MVP
- ORA
- PEA
- PEI
- PER
- PHA
- PHB
- PHD
- PHK
- PHP
- PHX
- PHY
- PLA
- PLB
- PLD
- PLP
- PLX
- PLY
- REP
- ROL
- ROR
- RTI
- RTL
- RTS
- SBC
- SEC
- SED
- SEI
- SEP
- STA
- STP
- STX
- STY
- STZ
- TAX
- TAY
- TCD
- TCS
- TDC
- TRB
- TSB
- TSC
- TSX
- TXA
- TXS
- TXY
- TYA
- TYA
- WAI
- WDM
- XBA
- XCE