Changeset 48442 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 11, 2013 5:36:23 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r48370 r48442 1486 1486 { 1487 1487 AssertMsgFailed(("Illegal enabling of paging with CS.u1Long = 1!!\n")); 1488 return VERR_EM_INTERPRETER; /* @todo generate #GP(0) */1488 return VERR_EM_INTERPRETER; /** @todo generate #GP(0) */ 1489 1489 } 1490 1490 … … 1493 1493 { 1494 1494 AssertMsgFailed(("Illegal enabling of paging with PAE disabled!!\n")); 1495 return VERR_EM_INTERPRETER; /* @todo generate #GP(0) */1495 return VERR_EM_INTERPRETER; /** @todo generate #GP(0) */ 1496 1496 } 1497 1497 msrEFER |= MSR_K6_EFER_LMA; … … 1502 1502 { 1503 1503 msrEFER &= ~MSR_K6_EFER_LMA; 1504 /* @todo Do we need to cut off rip here? High dword of rip is undefined, so it shouldn't really matter. */1504 /** @todo Do we need to cut off rip here? High dword of rip is undefined, so it shouldn't really matter. */ 1505 1505 } 1506 1506 CPUMSetGuestEFER(pVCpu, msrEFER);
Note:
See TracChangeset
for help on using the changeset viewer.