mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
Add error codes for SCSI
This commit is contained in:
parent
0abca62f09
commit
92449e6c43
@ -20,6 +20,13 @@ enum {
|
||||
op_comp = 8, /* compare SCSI data with memory */
|
||||
};
|
||||
|
||||
enum {
|
||||
scCommErr = 2, /* Communications error, operation timeout */
|
||||
scBadParmsErr = 4, /* Unrecognized TIB instruction */
|
||||
scPhaseErr = 5, /* Phase error on the SCSI bus */
|
||||
scCompareErr = 6, /* Comparison error from scComp instruction */
|
||||
};
|
||||
|
||||
typedef struct TIB { /* Transfer Instruction Block */
|
||||
short opcode; /* operation code */
|
||||
int param1; /* 1st parameter */
|
||||
|
Loading…
Reference in New Issue
Block a user