Changeset 81412 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Oct 21, 2019 1:29:39 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 134126
- Location:
- trunk/src/VBox/Devices/PC/BIOS
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/scsi.c
r76553 r81412 22 22 #include "pciutil.h" 23 23 #include "ebda.h" 24 #include "scsi.h" 24 25 25 26 … … 48 49 49 50 #define VBSCSI_MAX_DEVICES 16 /* Maximum number of devices a SCSI device can have. */ 50 51 /* Command opcodes. */52 #define SCSI_SERVICE_ACT 0x9e53 #define SCSI_INQUIRY 0x1254 #define SCSI_READ_CAP_10 0x2555 #define SCSI_READ_10 0x2856 #define SCSI_WRITE_10 0x2a57 #define SCSI_READ_CAP_16 0x10 /* Not an opcode by itself, sub-action for the "Service Action" */58 #define SCSI_READ_16 0x8859 #define SCSI_WRITE_16 0x8a60 51 61 52 /* Data transfer direction. */
Note:
See TracChangeset
for help on using the changeset viewer.