summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/t11
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/t11
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/t11')
-rw-r--r--src/emu/cpu/t11/t11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/t11/t11.c b/src/emu/cpu/t11/t11.c
index 67098ac46f9..da4366abc82 100644
--- a/src/emu/cpu/t11/t11.c
+++ b/src/emu/cpu/t11/t11.c
@@ -399,7 +399,7 @@ static CPU_EXECUTE( t11 )
{
t11.ppc = t11.reg[7]; /* copy PC to previous PC */
- debugger_instruction_hook(device->machine, PCD);
+ debugger_instruction_hook(device, PCD);
t11.op = ROPCODE();
(*opcode_table[t11.op >> 3])();