Changeset 8901
- Timestamp:
- 05/16/08 17:28:10 (5 months ago)
- Files:
-
- trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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. */

