home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / CDROM / ATAPI / ATAPISEG.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.5 KB  |  96 lines

  1. ;*DDK*************************************************************************/
  2. ;
  3. ; COPYRIGHT    Copyright (C) 1995 IBM Corporation
  4. ;
  5. ;    The following IBM OS/2 WARP source code is provided to you solely for
  6. ;    the purpose of assisting you in your development of OS/2 WARP device
  7. ;    drivers. You may use this code in accordance with the IBM License
  8. ;    Agreement provided in the IBM Device Driver Source Kit for OS/2. This
  9. ;    Copyright statement may not be removed.;
  10. ;*****************************************************************************/
  11.         page    ,132
  12.  
  13. ;**************************************************************************
  14. ;*
  15. ;* SOURCE FILE NAME = ATAPIseg.asm
  16. ;*
  17. ;* DESCRIPTIVE NAME = ATAPI.ADD - Adapter Driver for ATAPI/IDE-CD ROMs
  18. ;*
  19. ;*
  20. ;*
  21. ;* VERSION = V1.0
  22. ;*
  23. ;* DATE 1/1/94
  24. ;*
  25. ;* DESCRIPTION : ATAPI CODE/DATA segment declarations.
  26. ;*
  27. ;* Purpose:
  28. ;*
  29. ;* Notes :
  30. ;*
  31. ;*
  32. ;* CHANGE ACTIVITY =
  33. ;*     DATE       FLAG     DEFECT           CHANGE DESCRIPTION
  34. ;*   --------  ----------  ------  --------------------------------------
  35. ;*   mm/dd/yy  @Vdefect    ######  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  36. ;*
  37. ;*
  38. ;****************************************************************************
  39.  
  40.         include devhdr.inc
  41.  
  42. ;/*-------------------------------------*/
  43. ;/* Assembler Helper to order segments  */
  44. ;/*-------------------------------------*/
  45.  
  46. DDHeader        segment dword public 'DATA'
  47.  
  48.                public _DiskDDHeader
  49.  
  50. _DiskDDHeader  dd      -1
  51.                dw      DEVLEV_3 + DEV_CHAR_DEV
  52.                dw      _IDECDStr
  53.                dw      0
  54.                db      "ATAPICD$"
  55.                dw      0
  56.                dw      0
  57.                dw      0
  58.                dw      0
  59.                dd      DEV_ADAPTER_DD
  60.                dw      0
  61.  
  62. DDHeader        ends
  63.  
  64. LIBDATA         segment dword public 'DATA'
  65. LIBDATA         ends
  66.  
  67. _DATA           segment dword public 'DATA'
  68. _DATA           ends
  69.  
  70. CONST           segment dword public 'CONST'
  71. CONST           ends
  72.  
  73. _BSS            segment dword public 'BSS'
  74. _BSS            ends
  75.  
  76. _TEXT           segment dword public 'CODE'
  77.  
  78.                 extrn  _IDECDStr:near
  79.  
  80. _TEXT           ends
  81.  
  82. Code            segment dword public 'CODE'
  83. Code            ends
  84.  
  85. LIBCODE         segment dword public 'CODE'
  86. LIBCODE         ends
  87.  
  88. RMCode         segment dword public 'CODE'
  89. RMCode         ends
  90.  
  91.  
  92. DGROUP          group   CONST, _BSS, DDHeader, LIBDATA, _DATA
  93. StaticGroup     group   Code, LIBCODE, _TEXT, RMCode
  94.  
  95.         end
  96.