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/v60/v60.c | |
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/v60/v60.c')
-rw-r--r-- | src/emu/cpu/v60/v60.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/cpu/v60/v60.c b/src/emu/cpu/v60/v60.c index 6ddcab45dd4..ac903e7e1a5 100644 --- a/src/emu/cpu/v60/v60.c +++ b/src/emu/cpu/v60/v60.c @@ -4,7 +4,6 @@ // Portability fixes by Richter Belmont #include "debugger.h" -#include "deprecat.h" #include "v60.h" // memory accessors @@ -428,7 +427,7 @@ static CPU_EXECUTE( v60 ) v60_try_irq(); while(v60_ICount >= 0) { v60.PPC = PC; - debugger_instruction_hook(Machine, PC); + debugger_instruction_hook(device->machine, PC); v60_ICount -= 8; /* fix me -- this is just an average */ inc = OpCodeTable[OpRead8(PC)](); PC += inc; |