summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/z8000/z8000.c
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/z8000/z8000.c
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/z8000/z8000.c')
-rw-r--r--src/emu/cpu/z8000/z8000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/z8000/z8000.c b/src/emu/cpu/z8000/z8000.c
index c713dfe6d03..f4b40e25e44 100644
--- a/src/emu/cpu/z8000/z8000.c
+++ b/src/emu/cpu/z8000/z8000.c
@@ -485,7 +485,7 @@ static CPU_EXECUTE( z8000 )
if (IRQ_REQ)
Interrupt();
- debugger_instruction_hook(device->machine, PC);
+ debugger_instruction_hook(device, PC);
if (IRQ_REQ & Z8000_HALT)
{