diff options
author | 2019-11-25 22:51:21 -0500 | |
---|---|---|
committer | 2019-11-25 22:55:20 -0500 | |
commit | e69ff59e42f8ebe217bc6a2b6fdedce755cc32aa (patch) | |
tree | e1592fa0e93ec5c8854f28a782d698e2afa9e610 /src/devices/cpu/m6502/m6502make.py | |
parent | afa6622592e937f2951d1f4ee65a73e1e9849f53 (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-x | src/devices/cpu/m6502/m6502make.py | 4 |
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) |