home *** CD-ROM | disk | FTP | other *** search
- ;*DDK*************************************************************************/
- ;
- ; COPYRIGHT Copyright (C) 1995 IBM Corporation
- ;
- ; The following IBM OS/2 WARP source code is provided to you solely for
- ; the purpose of assisting you in your development of OS/2 WARP device
- ; drivers. You may use this code in accordance with the IBM License
- ; Agreement provided in the IBM Device Driver Source Kit for OS/2. This
- ; Copyright statement may not be removed.;
- ;*****************************************************************************/
- page ,132
-
- ;**************************************************************************
- ;*
- ;* SOURCE FILE NAME = ATAPIseg.asm
- ;*
- ;* DESCRIPTIVE NAME = ATAPI.ADD - Adapter Driver for ATAPI/IDE-CD ROMs
- ;*
- ;*
- ;*
- ;* VERSION = V1.0
- ;*
- ;* DATE 1/1/94
- ;*
- ;* DESCRIPTION : ATAPI CODE/DATA segment declarations.
- ;*
- ;* Purpose:
- ;*
- ;* Notes :
- ;*
- ;*
- ;* CHANGE ACTIVITY =
- ;* DATE FLAG DEFECT CHANGE DESCRIPTION
- ;* -------- ---------- ------ --------------------------------------
- ;* mm/dd/yy @Vdefect ###### xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- ;*
- ;*
- ;****************************************************************************
-
- include devhdr.inc
-
- ;/*-------------------------------------*/
- ;/* Assembler Helper to order segments */
- ;/*-------------------------------------*/
-
- DDHeader segment dword public 'DATA'
-
- public _DiskDDHeader
-
- _DiskDDHeader dd -1
- dw DEVLEV_3 + DEV_CHAR_DEV
- dw _IDECDStr
- dw 0
- db "ATAPICD$"
- dw 0
- dw 0
- dw 0
- dw 0
- dd DEV_ADAPTER_DD
- dw 0
-
- DDHeader ends
-
- LIBDATA segment dword public 'DATA'
- LIBDATA ends
-
- _DATA segment dword public 'DATA'
- _DATA ends
-
- CONST segment dword public 'CONST'
- CONST ends
-
- _BSS segment dword public 'BSS'
- _BSS ends
-
- _TEXT segment dword public 'CODE'
-
- extrn _IDECDStr:near
-
- _TEXT ends
-
- Code segment dword public 'CODE'
- Code ends
-
- LIBCODE segment dword public 'CODE'
- LIBCODE ends
-
- RMCode segment dword public 'CODE'
- RMCode ends
-
-
- DGROUP group CONST, _BSS, DDHeader, LIBDATA, _DATA
- StaticGroup group Code, LIBCODE, _TEXT, RMCode
-
- end
-