Changeset 52692 in vbox
- Timestamp:
- Sep 11, 2014 11:46:59 AM (10 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r51855 r52692 3857 3857 { 3858 3858 pVCpu->pgm.s.fA20Enabled = fEnable; 3859 pVCpu->pgm.s.GCPhysA20Mask = ~( RTGCPHYS)(!fEnable << 20);3859 pVCpu->pgm.s.GCPhysA20Mask = ~((RTGCPHYS)!fEnable << 20); 3860 3860 #ifdef VBOX_WITH_REM 3861 3861 REMR3A20Set(pVCpu->pVMR3, pVCpu, fEnable); -
trunk/src/VBox/VMM/VMMR3/PGMSavedState.cpp
r47786 r52692 3075 3075 */ 3076 3076 for (VMCPUID i = 0; i < pVM->cCpus; i++) 3077 pVM->aCpus[i].pgm.s.GCPhysA20Mask = ~(RTGCPHYS)(!pVM->aCpus[i].pgm.s.fA20Enabled << 20); 3077 { 3078 PVMCPU pVCpu = &pVM->aCpus[i]; 3079 pVCpu->pgm.s.GCPhysA20Mask = ~((RTGCPHYS)!pVM->aCpus[i].pgm.s.fA20Enabled << 20); 3080 pgmR3RefreshShadowModeAfterA20Change(pVCpu); 3081 } 3078 3082 3079 3083 /*
Note:
See TracChangeset
for help on using the changeset viewer.