diff options
author | 2008-11-21 16:53:48 +0000 | |
---|---|---|
committer | 2008-11-21 16:53:48 +0000 | |
commit | 5816061f8ef57e1179f04ce8deacf550bc472a68 (patch) | |
tree | c00a75cfa64dc902100eea621160db9278a99f5b /src/emu/cpu/v60/v60.c | |
parent | 3ae5e58ec1ca0c96d8b3d326992a101945779acf (diff) |
Debugger interfaces cleanup. Still more to do but this compiles and
works. Added callback parameters to the expression engine. Improved
CPU parsing so you can use a CPU tag or index in most commands that
take one. Switched to passing CPU and address space objects around
where appropriate. Lots of other minor tweaks.
Diffstat (limited to 'src/emu/cpu/v60/v60.c')
-rw-r--r-- | src/emu/cpu/v60/v60.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/v60/v60.c b/src/emu/cpu/v60/v60.c index 8a4c0510b59..bdd7fcaefc9 100644 --- a/src/emu/cpu/v60/v60.c +++ b/src/emu/cpu/v60/v60.c @@ -427,7 +427,7 @@ static CPU_EXECUTE( v60 ) v60_try_irq(); while(v60_ICount >= 0) { v60.PPC = PC; - debugger_instruction_hook(device->machine, PC); + debugger_instruction_hook(device, PC); v60_ICount -= 8; /* fix me -- this is just an average */ inc = OpCodeTable[OpRead8(PC)](); PC += inc; |