home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / OS2DASD / DMSEGS.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.2 KB  |  71 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. ;       SCCSID = src/dev/dasd/os2dasd/dmsegs.asm, dsdm, basedd 93/03/19
  12.  
  13.         page    ,132
  14.  
  15. ;/*****************************************************************************
  16. ;*
  17. ;* SOURCE FILE NAME = DMSEGS.ASM
  18. ;*
  19. ;* DESCRIPTIVE NAME = OS2DASD.DMD - OS/2 DASD Device Manager
  20. ;*                    Segment ordering
  21. ;*
  22. ;*
  23. ;* VERSION      V2.0
  24. ;*
  25. ;* DATE
  26. ;*
  27. ;* DESCRIPTION   This file creates defines all segments used by the DASD
  28. ;*               Manager. It used to insure the segments of the DASD
  29. ;*               Manager are linked in the order required by the OS/2
  30. ;*               device driver model.
  31. ;*
  32. ;*
  33. ;*
  34. ;*
  35. ;* CHANGE ACTIVITY =
  36. ;*   DATE      FLAG        APAR   CHANGE DESCRIPTION
  37. ;*   --------  ----------  -----  --------------------------------------
  38. ;*   mm/dd/yy  @Vnnnnn     xxxxx  xxxxxxx
  39. ;*****************************************************************************/
  40.  
  41. ;/*-------------------------------------*/
  42. ;/* Assembler Helper to order segments  */
  43. ;/*-------------------------------------*/
  44.  
  45. _DATA           segment dword public 'DATA'
  46. _DATA           ends
  47.  
  48. CONST           segment dword public 'CONST'
  49. CONST           ends
  50.  
  51. _BSS            segment dword public 'BSS'
  52. _BSS            ends
  53.  
  54. _TEXT           segment dword public 'CODE'
  55. _TEXT           ends
  56.  
  57. Code            segment dword public 'CODE'
  58. Code            ends
  59.  
  60. SwapCode        segment dword public 'CODE'
  61. SwapCode        ends
  62.  
  63. RMCode          segment dword public 'CODE'
  64. RMCode          ends
  65.  
  66. DGROUP          group   CONST, _BSS, _DATA
  67. StaticGroup     group   Code, _TEXT, RMCode
  68. SwapGroup       group   SwapCode
  69.  
  70.         end
  71.