summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/v30mz
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-11-21 16:53:48 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-11-21 16:53:48 +0000
commit5816061f8ef57e1179f04ce8deacf550bc472a68 (patch)
treec00a75cfa64dc902100eea621160db9278a99f5b /src/emu/cpu/v30mz
parent3ae5e58ec1ca0c96d8b3d326992a101945779acf (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/v30mz')
-rw-r--r--src/emu/cpu/v30mz/v30mz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/v30mz/v30mz.c b/src/emu/cpu/v30mz/v30mz.c
index 68c28a03e54..29f0ebcd49f 100644
--- a/src/emu/cpu/v30mz/v30mz.c
+++ b/src/emu/cpu/v30mz/v30mz.c
@@ -971,7 +971,7 @@ static CPU_EXECUTE( v30mz )
if (I.no_interrupt)
I.no_interrupt--;
- debugger_instruction_hook(device->machine, (I.sregs[CS]<<4) + I.ip);
+ debugger_instruction_hook(device, (I.sregs[CS]<<4) + I.ip);
nec_instruction[FETCHOP]();
}