- Timestamp:
- Apr 3, 2008 11:26:16 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29250
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r7502 r7718 405 405 pVM->hwaccm.s.vmx.fEnabled = true; 406 406 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_SEP); 407 #if 0 /* not yet */ 408 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 409 #endif 407 410 LogRel(("HWACCM: VMX enabled!\n")); 408 411 } … … 436 439 hwaccmr3DisableRawMode(pVM); 437 440 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_SEP); 441 #if 0 /* not yet */ 442 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 443 #endif 438 444 439 445 pVM->fHWACCMEnabled = true; … … 569 575 return false; 570 576 if (pCtx->ssHid.Attr.n.u1Present == 0) 571 return false;572 573 /** @todo if we remove this check, then Windows XP install fails during the textmode phase */574 if (!(pCtx->cr0 & X86_CR0_WRITE_PROTECT))575 577 return false; 576 578 #endif -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r7469 r7718 1659 1659 case USE_REG_CR0: 1660 1660 oldval = CPUMGetGuestCR0(pVM); 1661 #if ndef IN_RING31661 #ifdef IN_GC 1662 1662 /* CR0.WP and CR0.AM changes require a reschedule run in ring 3. */ 1663 1663 if ( (val32 & (X86_CR0_WP | X86_CR0_AM)) -
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r7715 r7718 539 539 return rc; 540 540 } 541 else 542 AssertFailed(); /* This shouldn't happen; the above check is paranoid. */ 541 543 } 542 544
Note:
See TracChangeset
for help on using the changeset viewer.