summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m6502make.py
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-11-25 22:51:21 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-11-25 22:55:20 -0500
commite69ff59e42f8ebe217bc6a2b6fdedce755cc32aa (patch)
treee1592fa0e93ec5c8854f28a782d698e2afa9e610 /src/devices/cpu/m6502/m6502make.py
parentafa6622592e937f2951d1f4ee65a73e1e9849f53 (diff)
New machines marked as NOT_WORKING
---------------------------------- Speedcom VD56SP [ClawGrip] Add disassembler and basic execution core for Rockwell R65C19 [AJR]
Diffstat (limited to 'src/devices/cpu/m6502/m6502make.py')
-rwxr-xr-xsrc/devices/cpu/m6502/m6502make.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m6502make.py b/src/devices/cpu/m6502/m6502make.py
index ea51fe43350..31f10d4f8d1 100755
--- a/src/devices/cpu/m6502/m6502make.py
+++ b/src/devices/cpu/m6502/m6502make.py
@@ -227,9 +227,9 @@ def save_dasm(f, device, states):
opc = tokens[0]
mode = tokens[-1]
extra = "0"
- if opc in ["jsr", "bsr", "callf"]:
+ if opc in ["jsr", "bsr", "callf", "jpi", "jsb"]:
extra = "STEP_OVER"
- elif opc in ["rts", "rti", "rtn", "retf"]:
+ elif opc in ["rts", "rti", "rtn", "retf", "tpi"]:
extra = "STEP_OUT"
emit(f, '\t{ "%s", DASM_%s, %s },' % (opc, mode, extra))
emit(f, DISASM_EPILOG % d)