diff options
Diffstat (limited to 'src/emu/cpu')
| -rw-r--r-- | src/emu/cpu/i386/i386.c | 6 | ||||
| -rw-r--r-- | src/emu/cpu/i86/instr86.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/cpu/i386/i386.c b/src/emu/cpu/i386/i386.c index 2039edb44e5..b07d84bdcbb 100644 --- a/src/emu/cpu/i386/i386.c +++ b/src/emu/cpu/i386/i386.c @@ -519,7 +519,7 @@ static void i386_trap(i386_state *cpustate,int irq, int irq_gate, int trap_level i386_load_protected_mode_segment(cpustate,&desc); CPL = cpustate->CPL; // current privilege level DPL = (desc.flags >> 5) & 0x03; // descriptor privilege level -// RPL = segment & 0x03; // requested privilege level +// RPL = segment & 0x03; // requested privilege level if((segment & ~0x07) == 0) { @@ -816,7 +816,7 @@ static void i286_task_switch(i386_state *cpustate, UINT16 selector, UINT8 nested } /* For nested tasks, we write the outgoing task's selector to the back-link field of the new TSS, - and set the NT flag in the EFLAGS register */ + and set the NT flag in the EFLAGS register */ if(nested != 0) { WRITE16(cpustate,tss+0,old_task); @@ -929,7 +929,7 @@ static void i386_task_switch(i386_state *cpustate, UINT16 selector, UINT8 nested } /* For nested tasks, we write the outgoing task's selector to the back-link field of the new TSS, - and set the NT flag in the EFLAGS register */ + and set the NT flag in the EFLAGS register */ if(nested != 0) { WRITE32(cpustate,tss+0,old_task); diff --git a/src/emu/cpu/i86/instr86.c b/src/emu/cpu/i86/instr86.c index 9c94ff6ca78..595b0ec6f3f 100644 --- a/src/emu/cpu/i86/instr86.c +++ b/src/emu/cpu/i86/instr86.c @@ -72,7 +72,7 @@ static void PREFIX86(_trap)(i8086_state *cpustate) #ifndef I80186 static void PREFIX86(_rotate_shift_Byte)(i8086_state *cpustate, unsigned ModRM, unsigned count, unsigned src) { -// unsigned src = (unsigned)GetRMByte(ModRM); +// unsigned src = (unsigned)GetRMByte(ModRM); unsigned dst=src; if (count==0) @@ -208,7 +208,7 @@ static void PREFIX86(_rotate_shift_Byte)(i8086_state *cpustate, unsigned ModRM, static void PREFIX86(_rotate_shift_Word)(i8086_state *cpustate, unsigned ModRM, unsigned count, unsigned src) { -// unsigned src = GetRMWord(ModRM); +// unsigned src = GetRMWord(ModRM); unsigned dst=src; if (count==0) |
