- Timestamp:
- May 16, 2008 3:28:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r8900 r8901 581 581 val |= X86_CR0_NE; /* always turn on the native mechanism to report FPU errors (old style uses interrupts) */ 582 582 } 583 if (!(val & X86_CR0_CD))584 val &= ~X86_CR0_NW; /* Illegal when cache is turned on. */583 /* Always enable caching. */ 584 val &= ~(X86_CR0_CD|X86_CR0_NW); 585 585 586 586 val |= X86_CR0_PG; /* Paging is always enabled; even when the guest is running in real mode or PE without paging. */
Note:
See TracChangeset
for help on using the changeset viewer.