Changeset 7752 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Apr 4, 2008 5:35:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r6300 r7752 1759 1759 if (fGCEnabled) { 1760 1760 rc = PDMDevHlpMMIORegisterGC(pDevIns, pData->apicbase & ~0xfff, 0x1000, 0, 1761 "apicMMIOWrite", "apicMMIORead", NULL , "APIC Memory");1761 "apicMMIOWrite", "apicMMIORead", NULL); 1762 1762 if (VBOX_FAILURE(rc)) 1763 1763 return rc; … … 1768 1768 1769 1769 rc = PDMDevHlpMMIORegisterR0(pDevIns, pData->apicbase & ~0xfff, 0x1000, 0, 1770 "apicMMIOWrite", "apicMMIORead", NULL , "APIC Memory");1770 "apicMMIOWrite", "apicMMIORead", NULL); 1771 1771 if (VBOX_FAILURE(rc)) 1772 1772 return rc; … … 2037 2037 if (fGCEnabled) { 2038 2038 rc = PDMDevHlpMMIORegisterGC(pDevIns, 0xfec00000, 0x1000, 0, 2039 "ioapicMMIOWrite", "ioapicMMIORead", NULL , "I/O APIC Memory");2039 "ioapicMMIOWrite", "ioapicMMIORead", NULL); 2040 2040 if (VBOX_FAILURE(rc)) 2041 2041 return rc; … … 2046 2046 2047 2047 rc = PDMDevHlpMMIORegisterR0(pDevIns, 0xfec00000, 0x1000, 0, 2048 "ioapicMMIOWrite", "ioapicMMIORead", NULL , "I/O APIC Memory");2048 "ioapicMMIOWrite", "ioapicMMIORead", NULL); 2049 2049 if (VBOX_FAILURE(rc)) 2050 2050 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.