Changeset 71114 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 23, 2018 11:12:25 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120985
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcArch.cpp
r70866 r71114 212 212 /** 213 213 * @interface_method_impl{PDMDEVREG,pfnInitComplete, 214 * Turn RAM pages between 0xa0000 and 0xeffff into reserved memory.} 215 * NB: At least some OS X versions (El Capitan, Sierra) get upset and panic 216 * early in the boot when we make memory between 0x0f0000-0x100000 reserved 217 * and non-writable. 214 * Turn RAM pages between 0xa0000 and 0xfffff into reserved memory.} 218 215 */ 219 216 static DECLCALLBACK(int) pcarchInitComplete(PPDMDEVINS pDevIns) … … 221 218 PVM pVM = PDMDevHlpGetVM(pDevIns); 222 219 int iRegion = 0; 223 RTGCPHYS const GCPhysEnd = 0x 0f0000;220 RTGCPHYS const GCPhysEnd = 0x100000; 224 221 RTGCPHYS GCPhysCur = 0x0a0000; 225 222 do
Note:
See TracChangeset
for help on using the changeset viewer.