1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-11 18:49:16 +00:00

Correct mnemonic for LDX with Zero Page,Y addressing.

This commit is contained in:
Radosław Kujawa 2017-01-22 22:40:32 +01:00
parent fb7d4b28e7
commit 1460817230

View File

@ -181,7 +181,7 @@ OP_LDA_IZP,"lda",IZP,2,NULL
OP_NOPI_B4,"nop",IMPLIED,1,NULL
OP_LDY_ZPX,"ldy",ZPX,2,NULL
OP_LDA_ZPX,"lda",ZPX,2,NULL
OP_LDX_ZPY,"unimpl",ZPY,1,NULL
OP_LDX_ZPY,"ldx",ZPY,1,NULL
OP_SMB3_ZP,"smb3",ZP,2,NULL
OP_CLV,"clv",IMPLIED,1,NULL
OP_LDA_ABSY,"lda",ABSOLUTEY,3,NULL

1 opcode_id mnemonic addressing size emulation
181 OP_NOPI_B4 nop IMPLIED 1 NULL
182 OP_LDY_ZPX ldy ZPX 2 NULL
183 OP_LDA_ZPX lda ZPX 2 NULL
184 OP_LDX_ZPY unimpl ldx ZPY 1 NULL
185 OP_SMB3_ZP smb3 ZP 2 NULL
186 OP_CLV clv IMPLIED 1 NULL
187 OP_LDA_ABSY lda ABSOLUTEY 3 NULL