diff options
| author | 2011-06-19 19:29:25 +0000 | |
|---|---|---|
| committer | 2011-06-19 19:29:25 +0000 | |
| commit | e6050ace10f2c2271c110d667e1b67a6b4367e25 (patch) | |
| tree | f856b597851f07e2f9f7e95b4d49710c392d09e2 /src/emu/cpu/i386/i386.c | |
| parent | a8c80b5a5f5df38c8080bb369c4a7c0e9f2b4b57 (diff) | |
Cleanups and version bumpmame0142u6
Diffstat (limited to 'src/emu/cpu/i386/i386.c')
| -rw-r--r-- | src/emu/cpu/i386/i386.c | 6 |
1 files changed, 3 insertions, 3 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); |
