home *** CD-ROM | disk | FTP | other *** search
- unit SCSI;
-
- INTERFACE
- uses Exec;
-
-
- type
- pSCSICmd = ^tSCSICmd;
- tSCSICmd = record
- scsi_Data: pword;
- scsi_Length: long;
- scsi_Actual: long;
- scsi_Command: pbyte;
- scsi_CmdLength: word;
- scsi_CmdActual: word;
- scsi_Flags: byte;
- scsi_Status: byte;
- scsi_SenseData: pbyte;
- scsi_SenseLength: word;
- scsi_SenseActual: word;
- end;
-
-
-
- const
- SCSIF_NOSENSE = 0;
- SCSIB_READ_WRITE = 0;
- HFERR_NoBoard = $32;
- HD_SCSICMD = $1C;
- SCSIF_READ = 1;
- SCSIB_AUTOSENSE = 1;
- SCSIF_AUTOSENSE = 2;
- SCSIF_WRITE = 0;
- HFERR_Phase = $2A;
- HFERR_BadStatus = $2D;
- HFERR_SelfUnit = $28;
- SCSIB_OLDAUTOSENSE = 2;
- HFERR_DMA = $29;
- SCSIF_OLDAUTOSENSE = 6;
- HFERR_SelTimeout = $2C;
- HFERR_Parity = $2B;
-
-
- IMPLEMENTATION
- end.
-