- Timestamp:
- Feb 5, 2018 1:44:39 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120692
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcArch.cpp
r70743 r70866 212 212 /** 213 213 * @interface_method_impl{PDMDEVREG,pfnInitComplete, 214 * Turn RAM pages between 0xa0000 and 0xfffff into reserved memory.} 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. 215 218 */ 216 219 static DECLCALLBACK(int) pcarchInitComplete(PPDMDEVINS pDevIns) … … 218 221 PVM pVM = PDMDevHlpGetVM(pDevIns); 219 222 int iRegion = 0; 220 RTGCPHYS const GCPhysEnd = 0x 100000;223 RTGCPHYS const GCPhysEnd = 0x0f0000; 221 224 RTGCPHYS GCPhysCur = 0x0a0000; 222 225 do
Note:
See TracChangeset
for help on using the changeset viewer.