Changeset 28460 in vbox
- Timestamp:
- Apr 19, 2010 1:19:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r27976 r28460 299 299 pVMCB->ctrl.u16InterceptWrCRx = RT_BIT(0) | RT_BIT(3) | RT_BIT(4); 300 300 else 301 pVMCB->ctrl.u16InterceptWrCRx = RT_BIT(0) | RT_BIT(4) | RT_BIT(8);301 pVMCB->ctrl.u16InterceptWrCRx = RT_BIT(0) | RT_BIT(4); 302 302 303 303 /* Intercept all DRx reads and writes by default. Changed later on. */ … … 741 741 { 742 742 val |= X86_CR0_PG; /* Paging is always enabled; even when the guest is running in real mode or PE without paging. */ 743 val |= X86_CR0_WP; /* Must set this as we rely on protect various pages and supervisor writes must be caught. */743 val |= X86_CR0_WP; /* Must set this as we rely on protecting various pages and supervisor writes must be caught. */ 744 744 } 745 745 pVMCB->guest.u64CR0 = val;
Note:
See TracChangeset
for help on using the changeset viewer.