Changeset 15862 in vbox for trunk/src/VBox
- Timestamp:
- Jan 8, 2009 12:41:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r15284 r15862 2473 2473 if (pRam->fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC) 2474 2474 { 2475 Assert (PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM);2475 AssertMsg(PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM, ("GCPhys=%RGp type=%d\n", GCPhys, PGM_PAGE_GET_TYPE(pPage))); 2476 2476 RTGCPHYS off = GCPhys - pRam->GCPhys; 2477 2477 unsigned iChunk = (off >> PGM_DYNAMIC_CHUNK_SHIFT); … … 2480 2480 else if (RT_LIKELY(pRam->pvR3)) 2481 2481 { 2482 Assert (PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM);2482 AssertMsg(PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM, ("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.