- Timestamp:
- Apr 17, 2007 12:56:53 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r2124 r2131 321 321 { 322 322 SVM_WRITE_SELREG(CS, cs); 323 Assert(pVMCB->guest.CS.u16Sel || !pVMCB->guest.CS.u16Attr || !(pCtx->cr0 & X86_CR0_PE));324 325 323 SVM_WRITE_SELREG(SS, ss); 326 Assert(pVMCB->guest.SS.u16Sel || !pVMCB->guest.SS.u16Attr || !(pCtx->cr0 & X86_CR0_PE));327 328 324 SVM_WRITE_SELREG(DS, ds); 329 Assert(pVMCB->guest.DS.u16Sel || !pVMCB->guest.DS.u16Attr || !(pCtx->cr0 & X86_CR0_PE));330 331 325 SVM_WRITE_SELREG(ES, es); 332 Assert(pVMCB->guest.ES.u16Sel || !pVMCB->guest.ES.u16Attr || !(pCtx->cr0 & X86_CR0_PE));333 334 326 SVM_WRITE_SELREG(FS, fs); 335 Assert(pVMCB->guest.FS.u16Sel || !pVMCB->guest.FS.u16Attr || !(pCtx->cr0 & X86_CR0_PE));336 337 327 SVM_WRITE_SELREG(GS, gs); 338 Assert(pVMCB->guest.GS.u16Sel || !pVMCB->guest.GS.u16Attr || !(pCtx->cr0 & X86_CR0_PE));339 328 } 340 329
Note:
See TracChangeset
for help on using the changeset viewer.