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/i86 | |
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/i86')
-rw-r--r-- | src/emu/cpu/i86/i286.c | 3 | ||||
-rw-r--r-- | src/emu/cpu/i86/i86.c | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/emu/cpu/i86/i286.c b/src/emu/cpu/i86/i286.c index f5d2315e3a1..59c1715dee8 100644 --- a/src/emu/cpu/i86/i286.c +++ b/src/emu/cpu/i86/i286.c @@ -4,7 +4,6 @@ ****************************************************************************/ #include "debugger.h" -#include "deprecat.h" #include "host.h" @@ -227,7 +226,7 @@ static CPU_EXECUTE( i80286 ) while(i80286_ICount>0) { LOG(("[%04x:%04x]=%02x\tF:%04x\tAX=%04x\tBX=%04x\tCX=%04x\tDX=%04x %d%d%d%d%d%d%d%d%d\n",I.sregs[CS],I.pc - I.base[CS],ReadByte(I.pc),I.flags,I.regs.w[AX],I.regs.w[BX],I.regs.w[CX],I.regs.w[DX], I.AuxVal?1:0, I.OverVal?1:0, I.SignVal?1:0, I.ZeroVal?1:0, I.CarryVal?1:0, I.ParityVal?1:0,I.TF, I.IF, I.DirVal<0?1:0)); - debugger_instruction_hook(Machine, I.pc); + debugger_instruction_hook(device->machine, I.pc); seg_prefix=FALSE; I.prevpc = I.pc; diff --git a/src/emu/cpu/i86/i86.c b/src/emu/cpu/i86/i86.c index 9c0b99bd499..76677a230a7 100644 --- a/src/emu/cpu/i86/i86.c +++ b/src/emu/cpu/i86/i86.c @@ -5,7 +5,6 @@ /* 26.March 2000 PeT changed set_irq_line */ #include "debugger.h" -#include "deprecat.h" #include "cpuintrf.h" #include "host.h" @@ -248,7 +247,7 @@ static CPU_EXECUTE( i8086 ) LOG(("[%04x:%04x]=%02x\tF:%04x\tAX=%04x\tBX=%04x\tCX=%04x\tDX=%04x %d%d%d%d%d%d%d%d%d\n", I.sregs[CS], I.pc - I.base[CS], ReadByte(I.pc), I.flags, I.regs.w[AX], I.regs.w[BX], I.regs.w[CX], I.regs.w[DX], I.AuxVal ? 1 : 0, I.OverVal ? 1 : 0, I.SignVal ? 1 : 0, I.ZeroVal ? 1 : 0, I.CarryVal ? 1 : 0, I.ParityVal ? 1 : 0, I.TF, I.IF, I.DirVal < 0 ? 1 : 0)); - debugger_instruction_hook(Machine, I.pc); + debugger_instruction_hook(device->machine, I.pc); seg_prefix = FALSE; I.prevpc = I.pc; @@ -301,7 +300,7 @@ static CPU_EXECUTE( i80186 ) { LOG(("[%04x:%04x]=%02x\tAX=%04x\tBX=%04x\tCX=%04x\tDX=%04x\n", I.sregs[CS], I.pc, ReadByte(I.pc), I.regs.w[AX], I.regs.w[BX], I.regs.w[CX], I.regs.w[DX])); - debugger_instruction_hook(Machine, I.pc); + debugger_instruction_hook(device->machine, I.pc); seg_prefix = FALSE; I.prevpc = I.pc; |