Changeset 18663 in vbox for trunk/src/VBox
- Timestamp:
- Apr 2, 2009 7:08:14 PM (16 years ago)
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcArch.c
r18101 r18663 251 251 if (RT_FAILURE(rc)) 252 252 return rc; 253 254 #ifndef VBOX_WITH_NEW_PHYS_CODE255 /*256 * Reserve ROM/MMIO areas:257 * 1. 0x000a0000-0x000fffff258 * 2. 0xfff80000-0xffffffff259 * Note: This will be removed before long.260 */261 rc = MMR3PhysReserve(PDMDevHlpGetVM(pDevIns), 0x000a0000, 0x50000, "Low ROM Region");262 if (RT_FAILURE(rc))263 return rc;264 rc = MMR3PhysReserve(PDMDevHlpGetVM(pDevIns), 0xfff80000, 0x80000, "High ROM Region");265 if (RT_FAILURE(rc))266 return rc;267 #endif268 253 269 254 return VINF_SUCCESS; -
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r18557 r18663 1224 1224 pcbiosPlantMPStable(pDevIns, pThis->au8DMIPage + VBOX_DMI_TABLE_SIZE, pThis->cCpus); 1225 1225 1226 #ifdef VBOX_WITH_NEW_PHYS_CODE1227 1226 /* 1228 1227 * Re-shadow the LAN ROM image and make it RAM/RAM. … … 1258 1257 cPages--; 1259 1258 } 1260 #endif1261 1259 } 1262 1260 … … 1767 1765 rc = PDMDevHlpROMRegister(pDevIns, VBOX_LANBOOT_SEG << 4, cbLanBootBinary, pu8LanBootBinary, 1768 1766 PGMPHYS_ROM_FLAGS_SHADOWED, "Net Boot ROM"); 1769 #ifdef VBOX_WITH_NEW_PHYS_CODE1770 1767 if (RT_SUCCESS(rc)) 1771 1768 { … … 1775 1772 AssertRCReturn(rc, rc); 1776 1773 } 1777 #endif1778 1774 } 1779 1775
Note:
See TracChangeset
for help on using the changeset viewer.