- Timestamp:
- Mar 2, 2007 2:52:49 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r1164 r1165 1386 1386 1387 1387 RTGCPTR GCPtrDst = pCtx->edi; 1388 uint32_t cpl = (p RegFrame->eflags.Bits.u1VM) ? 3 : (pCtx->ss & X86_SEL_RPL);1388 uint32_t cpl = (pCtx->eflags.Bits.u1VM) ? 3 : (pCtx->ss & X86_SEL_RPL); 1389 1389 1390 1390 /* Access verification first; we can't recover from traps inside this instruction, as the port read cannot be repeated. */ … … 1455 1455 1456 1456 RTGCPTR GCPtrSrc = pCtx->esi; 1457 uint32_t cpl = (p RegFrame->eflags.Bits.u1VM) ? 3 : (pCtx->ss & X86_SEL_RPL);1457 uint32_t cpl = (pCtx->eflags.Bits.u1VM) ? 3 : (pCtx->ss & X86_SEL_RPL); 1458 1458 1459 1459 /* Access verification first; we currently can't recover properly from traps inside this instruction */
Note:
See TracChangeset
for help on using the changeset viewer.