Changeset 38808 in vbox
- Timestamp:
- Sep 20, 2011 3:36:13 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74103
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/disk.c
r38706 r38808 574 574 dpt->host_bus[1] = 'S'; 575 575 dpt->host_bus[2] = 'A'; 576 dpt->host_bus[3] = 0;576 dpt->host_bus[3] = ' '; 577 577 } 578 578 else { … … 582 582 dpt->iface_type[1] = 'T'; 583 583 dpt->iface_type[2] = 'A'; 584 dpt->iface_type[3] = 0; 584 dpt->iface_type[3] = ' '; 585 dpt->iface_type[4] = ' '; 586 dpt->iface_type[5] = ' '; 587 dpt->iface_type[6] = ' '; 588 dpt->iface_type[7] = ' '; 585 589 586 590 if (iface == ATA_IFACE_ISA) { -
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r38544 r38808 5975 5975 write_byte(DS, SI+(Bit16u)&Int13DPT->host_bus[1], 'S'); 5976 5976 write_byte(DS, SI+(Bit16u)&Int13DPT->host_bus[2], 'A'); 5977 write_byte(DS, SI+(Bit16u)&Int13DPT->host_bus[3], 0);5977 write_byte(DS, SI+(Bit16u)&Int13DPT->host_bus[3], ' '); 5978 5978 } 5979 5979 else { … … 5983 5983 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[1], 'T'); 5984 5984 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[2], 'A'); 5985 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[3], 0); 5985 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[3], ' '); 5986 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[4], ' '); 5987 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[5], ' '); 5988 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[6], ' '); 5989 write_byte(DS, SI+(Bit16u)&Int13DPT->iface_type[7], ' '); 5986 5990 5987 5991 if (iface==ATA_IFACE_ISA) {
Note:
See TracChangeset
for help on using the changeset viewer.