Changeset 41906 in vbox for trunk/src/VBox/VMM/VMMRC/CPUMRC.cpp
- Timestamp:
- Jun 24, 2012 3:44:03 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/CPUMRC.cpp
r41783 r41906 95 95 96 96 pGstCtxCore->eip = *pEsp++; 97 pGstCtxCore->cs 97 pGstCtxCore->cs.Sel = (RTSEL)*pEsp++; 98 98 pGstCtxCore->eflags.u32 = *pEsp++; 99 99 pGstCtxCore->esp = *pEsp++; 100 pGstCtxCore->ss 100 pGstCtxCore->ss.Sel = (RTSEL)*pEsp++; 101 101 if (pGstCtxCore->eflags.Bits.u1VM) 102 102 { 103 pGstCtxCore->es 104 pGstCtxCore->ds 105 pGstCtxCore->fs 106 pGstCtxCore->gs 103 pGstCtxCore->es.Sel = (RTSEL)*pEsp++; 104 pGstCtxCore->ds.Sel = (RTSEL)*pEsp++; 105 pGstCtxCore->fs.Sel = (RTSEL)*pEsp++; 106 pGstCtxCore->gs.Sel = (RTSEL)*pEsp++; 107 107 } 108 108
Note:
See TracChangeset
for help on using the changeset viewer.