summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m6502.c
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2013-03-23 18:46:31 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2013-03-23 18:46:31 +0000
commit89cfb35eb47a26c95617c86dd195c825229f55c8 (patch)
treea0d9ddb6bcd28ffec7a5fada07858930eeddce60 /src/emu/cpu/m6502/m6502.c
parent69e62129cbdd0733473a74487a9fa5619f8adb6d (diff)
M740 CPU family updates: [R. Belmont, O. Galibert]
- Support for all T=1 instructions - Added COM and the accumulator-only versions of INC and DEC
Diffstat (limited to 'src/emu/cpu/m6502/m6502.c')
-rw-r--r--src/emu/cpu/m6502/m6502.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/m6502/m6502.c b/src/emu/cpu/m6502/m6502.c
index 2d15dadd967..f0bb9c9fec8 100644
--- a/src/emu/cpu/m6502/m6502.c
+++ b/src/emu/cpu/m6502/m6502.c
@@ -407,7 +407,7 @@ void m6502_device::execute_run()
do_exec_partial();
while(icount > 0) {
- if(inst_state < 0x100) {
+ if(inst_state < 0xff00) {
PPC = NPC;
inst_state = IR | inst_state_base;
if(machine().debug_flags & DEBUG_FLAG_ENABLED)