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

Correct wrong ORA indirect zero page X size.

This commit is contained in:
Radosław Kujawa 2017-01-24 16:36:39 +01:00
parent b047c4ff81
commit 20a39a8d6c

View File

@ -1,6 +1,6 @@
opcode_id,mnemonic,addressing,size,emulation
OP_BRK,"brk",IMPLIED,1,NULL
OP_ORA_IZPX,"ora",IZPX,1,emul_ora
OP_ORA_IZPX,"ora",IZPX,2,emul_ora
OP_NOPI_3,"nop",IMMEDIATE,2,NULL
OP_NOPI_4,"nop",IMPLIED,1,NULL
OP_TSB_ZP,"tsb",ZP,2,NULL

1 opcode_id mnemonic addressing size emulation
2 OP_BRK brk IMPLIED 1 NULL
3 OP_ORA_IZPX ora IZPX 1 2 emul_ora
4 OP_NOPI_3 nop IMMEDIATE 2 NULL
5 OP_NOPI_4 nop IMPLIED 1 NULL
6 OP_TSB_ZP tsb ZP 2 NULL