diff options
author | 2008-11-13 07:23:50 +0000 | |
---|---|---|
committer | 2008-11-13 07:23:50 +0000 | |
commit | cbd240d0deec6f2fcfac8b26c1b18a666d534f33 (patch) | |
tree | 14111affa2773433449dbb866647be729541ffd5 /src/emu/cpu/i8x41 | |
parent | 4af530d9e8fe816032c21fc90b3cc80f5d74c2e2 (diff) |
This patch replaces the Machine parameter where an running_machine *
is available and removes the deprecat.h where unnecessary.
[Oliver Stoeneberg]
Diffstat (limited to 'src/emu/cpu/i8x41')
-rw-r--r-- | src/emu/cpu/i8x41/i8x41.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/cpu/i8x41/i8x41.c b/src/emu/cpu/i8x41/i8x41.c index acd7de77dfc..1bf19f08522 100644 --- a/src/emu/cpu/i8x41/i8x41.c +++ b/src/emu/cpu/i8x41/i8x41.c @@ -115,7 +115,6 @@ */ #include "debugger.h" -#include "deprecat.h" #include "i8x41.h" typedef struct _upi41_state_t upi41_state_t; @@ -924,7 +923,7 @@ static CPU_EXECUTE( i8x41 ) PPC = PC; - debugger_instruction_hook(Machine, PC); + debugger_instruction_hook(device->machine, PC); PC += 1; upi41_state->icount -= i8x41_cycles[op]; |