Changeset 11996 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 2, 2008 4:40:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMMap.cpp
r11964 r11996 739 739 return; 740 740 741 Assert(PGMGetGuestMode(pVM) <= PGMMODE_PAE );741 Assert(PGMGetGuestMode(pVM) <= PGMMODE_PAE_NX); 742 742 743 743 /* … … 1044 1044 return false; 1045 1045 1046 Assert(PGMGetGuestMode(pVM) <= PGMMODE_PAE );1046 Assert(PGMGetGuestMode(pVM) <= PGMMODE_PAE_NX); 1047 1047 1048 1048 /* … … 1076 1076 } 1077 1077 else 1078 if (PGMGetGuestMode(pVM) == PGMMODE_PAE) 1078 if ( PGMGetGuestMode(pVM) == PGMMODE_PAE 1079 || PGMGetGuestMode(pVM) == PGMMODE_PAE_NX) 1079 1080 { 1080 1081 for (PPGMMAPPING pCur = pVM->pgm.s.pMappingsR3; pCur; pCur = pCur->pNextR3)
Note:
See TracChangeset
for help on using the changeset viewer.