Changeset 95057 in vbox
- Timestamp:
- May 23, 2022 9:15:10 AM (3 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r93411 r95057 4381 4381 Log2(("%s: set multi sector count to %d\n", __FUNCTION__, s->uATARegNSector)); 4382 4382 s->cMultSectors = s->uATARegNSector; 4383 ataR3CmdOK(pCtl, s, 0);4383 ataR3CmdOK(pCtl, s, ATA_STAT_SEEK); 4384 4384 } 4385 4385 ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */ … … 4465 4465 s->fLBA48 = true; 4466 4466 ataR3SetSector(s, s->cTotalSectors - 1); 4467 ataR3CmdOK(pCtl, s, 0);4467 ataR3CmdOK(pCtl, s, ATA_STAT_SEEK); 4468 4468 ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */ 4469 4469 break; 4470 4470 case ATA_SEEK: /* Used by the SCO OpenServer. Command is marked as obsolete */ 4471 ataR3CmdOK(pCtl, s, 0);4471 ataR3CmdOK(pCtl, s, ATA_STAT_SEEK); 4472 4472 ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */ 4473 4473 break; … … 4476 4476 goto abort_cmd; 4477 4477 ataR3SetSector(s, RT_MIN(s->cTotalSectors, 1 << 28) - 1); 4478 ataR3CmdOK(pCtl, s, 0);4478 ataR3CmdOK(pCtl, s, ATA_STAT_SEEK); 4479 4479 ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */ 4480 4480 break; … … 5989 5989 { 5990 5990 Assert(iSourceSink == ATAFN_SS_NULL); 5991 ataR3CmdOK(pCtl, s, 0);5991 ataR3CmdOK(pCtl, s, ATA_STAT_SEEK); 5992 5992 } 5993 5993 s->iIOBufferEnd = s->cbElementaryTransfer; -
trunk/src/VBox/Devices/Storage/DevFdc.cpp
r94649 r95057 784 784 break; 785 785 case FD_REG_DSR: 786 #if 0 786 787 fdctrl_write_rate(fdctrl, value); 788 #else 789 fdctrl_write_data(fdctrl, value); 790 #endif 787 791 break; 788 792 case FD_REG_FIFO:
Note:
See TracChangeset
for help on using the changeset viewer.