home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / CDROM / OS2CDROM / CDSEGS.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.0 KB  |  76 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 = CDSEGS.ASM
  16. ;*
  17. ;* DESCRIPTIVE NAME = Segment ordering
  18. ;*
  19. ;*
  20. ;* VERSION      V2.0
  21. ;*
  22. ;* DATE
  23. ;*
  24. ;* DESCRIPTION
  25. ;*
  26. ;* FUNCTIONS    This file creates defines all segments used by the
  27. ;*              CD-ROM Manager. It used to insure the segments
  28. ;*              are linked in the order required by the OS/2
  29. ;*              device driver model.
  30. ;*
  31. ;* NOTES        NONE
  32. ;*
  33. ;* STRUCTURES   NONE
  34. ;*
  35. ;* EXTERNAL REFERENCES
  36. ;*
  37. ;*              NONE
  38. ;*
  39. ;* EXTERNAL FUNCTIONS
  40. ;*
  41. ;*              NONE
  42. ;*
  43. ;* CHANGE ACTIVITY =
  44. ;*   DATE      FLAG        APAR   CHANGE DESCRIPTION
  45. ;*   --------  ----------  -----  --------------------------------------
  46. ;*   mm/dd/yy  @Vr.mpppxx  xxxxx  xxxxxxx
  47. ;*****************************************************************************/
  48.  
  49. ;*
  50. ;* Assembler Helper to order segments
  51. ;*
  52.  
  53. _DATA           segment dword public 'DATA'
  54. _DATA           ends
  55.  
  56. CONST           segment dword public 'CONST'
  57. CONST           ends
  58.  
  59. _BSS            segment dword public 'BSS'
  60. _BSS            ends
  61.  
  62. _TEXT           segment dword public 'CODE'
  63. _TEXT           ends
  64.  
  65. Code            segment dword public 'CODE'
  66. Code            ends
  67.  
  68. SwapCode        segment dword public 'CODE'
  69. SwapCode        ends
  70.  
  71. DGROUP          group   CONST, _BSS, _DATA
  72. StaticGroup     group   Code, _TEXT
  73. SwapGroup       group   SwapCode
  74.  
  75.         end
  76.