Changeset 18101 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 19, 2009 10:39:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcArch.c
r17251 r18101 259 259 * Note: This will be removed before long. 260 260 */ 261 rc = PDMDevHlpPhysReserve(pDevIns, 0x000a0000, 0x50000, "Low ROM Region");261 rc = MMR3PhysReserve(PDMDevHlpGetVM(pDevIns), 0x000a0000, 0x50000, "Low ROM Region"); 262 262 if (RT_FAILURE(rc)) 263 263 return rc; 264 rc = PDMDevHlpPhysReserve(pDevIns, 0xfff80000, 0x80000, "High ROM Region");264 rc = MMR3PhysReserve(PDMDevHlpGetVM(pDevIns), 0xfff80000, 0x80000, "High ROM Region"); 265 265 if (RT_FAILURE(rc)) 266 266 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.