Changeset 41393 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- May 22, 2012 2:23:13 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78102
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r40274 r41393 1251 1251 1252 1252 pPGM->fA20Enabled = true; 1253 pPGM->GCPhysA20Mask = ~(RTGCPHYS)(!pPGM->fA20Enabled << 20); 1253 1254 } 1254 1255 -
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r41388 r41393 3391 3391 Log5(("pgmR3PhysRomWriteHandler: %d %c %#08RGp %#04zx\n", pRomPage->enmProt, enmAccessType == PGMACCESSTYPE_READ ? 'R' : 'W', GCPhys, cbBuf)); 3392 3392 NOREF(pvPhys); 3393 RTLogPrintf("pgmPhysRomWriteHandler: enmAccessType=%d GCPhys=%RGp\n", (uint32_t)enmAccessType, GCPhys); 3393 3394 3394 3395 if (enmAccessType == PGMACCESSTYPE_READ) -
trunk/src/VBox/VMM/VMMR3/PGMSavedState.cpp
r39402 r41393 3017 3017 3018 3018 /* 3019 * Fix the A20 mask. 3020 */ 3021 for (VMCPUID i = 0; i < pVM->cCpus; i++) 3022 pVM->aCpus[i].pgm.s.GCPhysA20Mask = ~(RTGCPHYS)(!pVM->aCpus[i].pgm.s.fA20Enabled << 20); 3023 3024 /* 3019 3025 * The guest mappings - skipped now, see re-fixation in the caller. 3020 3026 */
Note:
See TracChangeset
for help on using the changeset viewer.