Fixed LDA >addr,X

This commit is contained in:
Andrew Jacobs 2019-03-20 15:40:55 +00:00
parent 41b33a9250
commit 5a28ec1f04
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ void emu816::step()
case 0xbc: op_ldy(am_absx()); break;
case 0xbd: op_lda(am_absx()); break;
case 0xbe: op_ldx(am_absy()); break;
case 0xbf: op_lda(am_alng()); break;
case 0xbf: op_lda(am_alnx()); break;
case 0xc0: op_cpy(am_immx()); break;
case 0xc1: op_cmp(am_dpix()); break;