home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / IBM / IBM2SCSI / SCSISEGS.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.0 KB  |  61 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. ;/****************************************************************************/
  12. ;/*                                         */
  13. ;/*                                         */
  14. ;/****************************************************************************/
  15. ;
  16. ;/********************* Start of Specifications ******************************/
  17. ;/*                                         */
  18. ;/*  Source File Name: ESDISEGS.ASM                         */
  19. ;/*                                         */
  20. ;/*  Descriptive Name: ESDI CODE/DATA segment declarations.             */
  21. ;/*                                         */
  22. ;/*  Copyright:                                  */
  23. ;/*                                         */
  24. ;/*  Status:                                     */
  25. ;/*                                         */
  26. ;/*  Function: Part of ESDI device driver for OS/2 family 2             */
  27. ;/*                                         */
  28. ;/*                                         */
  29. ;/*  Notes:                                     */
  30. ;/*    Dependencies:                                 */
  31. ;/*    Restrictions:                                 */
  32. ;/*                                         */
  33. ;/*  Entry Points:                                 */
  34. ;/*                                         */
  35. ;/*  External References:  See EXTRN statements below                 */
  36. ;/*                                         */
  37. ;/********************** End of Specifications *******************************/
  38.  
  39. ;/*-------------------------------------*/
  40. ;/* Assembler Helper to order segments    */
  41. ;/*-------------------------------------*/
  42.  
  43. _DATA        segment dword public 'DATA'
  44. _DATA        ends
  45.  
  46. CONST        segment dword public 'CONST'
  47. CONST        ends
  48.  
  49. _BSS        segment dword public 'BSS'
  50. _BSS        ends
  51.  
  52. Code        segment dword public 'CODE'
  53. Code        ends
  54.  
  55. _TEXT        segment dword public 'CODE'
  56. _TEXT        ends
  57.  
  58. DGROUP        group    CONST, _BSS, _DATA
  59. StaticGroup    group    Code, _TEXT
  60.     end
  61.