Changeset 81853 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Nov 14, 2019 10:57:24 PM (5 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r81835 r81853 4208 4208 { 4209 4209 /* Register I/O port space for BIOS access. */ 4210 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, BUSLOGIC_BIOS_IO_PORT, 4 /*cPorts*/, 4210 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, BUSLOGIC_BIOS_IO_PORT, 4 /*cPorts*/, 0 /*fFlags*/, 4211 4211 buslogicR3BiosIoPortWrite, buslogicR3BiosIoPortRead, 4212 4212 buslogicR3BiosIoPortWriteStr, buslogicR3BiosIoPortReadStr, NULL /*pvUser*/, -
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r81785 r81853 5494 5494 { 5495 5495 if (pThis->enmCtrlType == LSILOGICCTRLTYPE_SCSI_SPI) 5496 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, LSILOGIC_BIOS_IO_PORT, 4 ,5496 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, LSILOGIC_BIOS_IO_PORT, 4 /*cPorts*/, 0 /*fFlags*/, 5497 5497 lsilogicR3IsaIOPortWrite, lsilogicR3IsaIOPortRead, 5498 5498 lsilogicR3IsaIOPortWriteStr, lsilogicR3IsaIOPortReadStr, NULL /*pvUser*/, 5499 5499 "LsiLogic BIOS", NULL /*paExtDesc*/, &pThis->hIoPortsBios); 5500 5500 else if (pThis->enmCtrlType == LSILOGICCTRLTYPE_SCSI_SAS) 5501 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, LSILOGIC_SAS_BIOS_IO_PORT, 4 ,5501 rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, LSILOGIC_SAS_BIOS_IO_PORT, 4 /*cPorts*/, 0 /*fFlags*/, 5502 5502 lsilogicR3IsaIOPortWrite, lsilogicR3IsaIOPortRead, 5503 5503 lsilogicR3IsaIOPortWriteStr, lsilogicR3IsaIOPortReadStr, NULL /*pvUser*/,
Note:
See TracChangeset
for help on using the changeset viewer.