2000-05-06 21:34:20 +02:00
|
|
|
;
|
|
|
|
; File:
|
|
|
|
; io.inc
|
|
|
|
; Description:
|
|
|
|
; Segments and external common routines used by various device drivers
|
|
|
|
;
|
|
|
|
; Copyright (c) 1998
|
|
|
|
; Pasquale J. Villani
|
|
|
|
; All Rights Reserved
|
|
|
|
;
|
|
|
|
; This file is part of DOS-C.
|
|
|
|
;
|
|
|
|
; DOS-C is free software; you can redistribute it and/or
|
|
|
|
; modify it under the terms of the GNU General Public License
|
|
|
|
; as published by the Free Software Foundation; either version
|
|
|
|
; 2, or (at your option) any later version.
|
|
|
|
;
|
|
|
|
; DOS-C is distributed in the hope that it will be useful, but
|
|
|
|
; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
|
|
; the GNU General Public License for more details.
|
|
|
|
;
|
|
|
|
; You should have received a copy of the GNU General Public
|
|
|
|
; License along with DOS-C; see the file COPYING. If not,
|
|
|
|
; write to the Free Software Foundation, 675 Mass Ave,
|
|
|
|
; Cambridge, MA 02139, USA.
|
|
|
|
;
|
|
|
|
; $Header$
|
|
|
|
;
|
|
|
|
|
2001-03-21 03:56:26 +01:00
|
|
|
%include "segs.inc"
|
2000-05-06 21:34:20 +02:00
|
|
|
|
2001-09-23 22:39:44 +02:00
|
|
|
;
|
|
|
|
; Error Return Codes
|
|
|
|
;
|
|
|
|
|
|
|
|
%define E_WRPRT 0 ; Write Protect
|
|
|
|
%define E_UNIT 1 ; Unknown Unit
|
|
|
|
%define E_NOTRDY 2 ; Device Not Ready
|
|
|
|
%define E_CMD 3 ; Unknown Command
|
|
|
|
%define E_CRC 4 ; Crc Error
|
|
|
|
%define E_LENGTH 5 ; Bad Length
|
|
|
|
%define E_SEEK 6 ; Seek Error
|
|
|
|
%define E_MEDIA 7 ; Unknown MEDIA
|
|
|
|
%define E_NOTFND 8 ; Sector Not Found
|
|
|
|
%define E_PAPER 9 ; No Paper
|
|
|
|
%define E_WRITE 10 ; Write Fault
|
|
|
|
%define E_READ 11 ; Read Fault
|
|
|
|
%define E_FAILURE 12 ; General Failure
|
|
|
|
|
|
|
|
|
2000-05-06 21:34:20 +02:00
|
|
|
extern _IOExit:wrt TGROUP
|
|
|
|
extern _IOSuccess:wrt TGROUP
|
|
|
|
extern _IOErrorExit:wrt TGROUP
|
|
|
|
extern _IOErrCnt:wrt TGROUP
|
|
|
|
extern _IODone:wrt TGROUP
|
|
|
|
extern _IOCommandError:wrt TGROUP
|
|
|
|
extern GetUnitNum:wrt TGROUP
|
|
|
|
extern _ReqPktPtr:wrt TGROUP
|
2001-11-18 00:26:45 +01:00
|
|
|
; Log: io.inc,v
|
|
|
|
;
|
|
|
|
; Revision 1.3 1999/08/10 17:57:12 jprice
|
|
|
|
; ror4 2011-02 patch
|
|
|
|
;
|
|
|
|
; Revision 1.2 1999/03/29 17:05:09 jprice
|
|
|
|
; ror4 changes
|
|
|
|
;
|
|
|
|
; Revision 1.1.1.1 1999/03/29 15:41:08 jprice
|
|
|
|
; New version without IPL.SYS
|
|
|
|
;
|
|
|
|
; Revision 1.1 1999/02/08 05:55:57 jprice
|
|
|
|
; Added Pat's 1937 kernel patches
|
|
|
|
;
|
|
|
|
;
|
|
|
|
; Rev 1.0 06 Dec 1998 8:13:02 patv
|
|
|
|
; Initial revision.
|
|
|
|
; EndLog
|
|
|
|
;
|