mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
xavix: Allow debugger to step over CALLF instruction
This commit is contained in:
parent
73cc342529
commit
ada4b54d61
@ -227,8 +227,8 @@ def save_dasm(f, device, states):
|
||||
opc = tokens[0]
|
||||
mode = tokens[-1]
|
||||
extra = "0"
|
||||
if opc in ["jsr", "bsr"]:
|
||||
extra = "STEP_OVER"
|
||||
if opc in ["jsr", "bsr", "callf"]:
|
||||
extra = "STEP_OVER"
|
||||
elif opc in ["rts", "rti", "rtn"]:
|
||||
extra = "STEP_OUT"
|
||||
emit(f, '\t{ "%s", DASM_%s, %s },' % (opc, mode, extra))
|
||||
|
Loading…
Reference in New Issue
Block a user