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/m6800/m6800.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/m6800/m6800.c')
-rw-r--r-- | src/emu/cpu/m6800/m6800.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/m6800/m6800.c b/src/emu/cpu/m6800/m6800.c index 24b02f25562..c082a06b107 100644 --- a/src/emu/cpu/m6800/m6800.c +++ b/src/emu/cpu/m6800/m6800.c @@ -987,7 +987,7 @@ static CPU_EXECUTE( m6800 ) else { pPPC = pPC; - debugger_instruction_hook(Machine, PCD); + debugger_instruction_hook(device->machine, PCD); ireg=M_RDOP(PCD); PC++; @@ -1337,7 +1337,7 @@ static CPU_EXECUTE( m6803 ) else { pPPC = pPC; - debugger_instruction_hook(Machine, PCD); + debugger_instruction_hook(device->machine, PCD); ireg=M_RDOP(PCD); PC++; @@ -1679,7 +1679,7 @@ static CPU_EXECUTE( hd63701 ) else { pPPC = pPC; - debugger_instruction_hook(Machine, PCD); + debugger_instruction_hook(device->machine, PCD); ireg=M_RDOP(PCD); PC++; @@ -2011,7 +2011,7 @@ static CPU_EXECUTE( nsc8105 ) else { pPPC = pPC; - debugger_instruction_hook(Machine, PCD); + debugger_instruction_hook(device->machine, PCD); ireg=M_RDOP(PCD); PC++; |