Changeset 15885 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 9, 2009 6:21:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r15862 r15885 2480 2480 else if (RT_LIKELY(pRam->pvR3)) 2481 2481 { 2482 AssertMsg(PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM , ("GCPhys=%RGp type=%d\n", GCPhys, PGM_PAGE_GET_TYPE(pPage)));2482 AssertMsg(PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM || PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_MMIO2, ("GCPhys=%RGp type=%d\n", GCPhys, PGM_PAGE_GET_TYPE(pPage))); 2483 2483 RTGCPHYS off = GCPhys - pRam->GCPhys; 2484 2484 *pvPtr = (uint8_t *)pRam->pvR3 + off;
Note:
See TracChangeset
for help on using the changeset viewer.