home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / OS2SCSI / SCSEGS.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.0 KB  |  67 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/os2scsi/scsegs.asm, scsy, ddk_subset, b_bdd.032 93/03/19
  12.  
  13.         page    ,132
  14. ;/*****************************************************************************
  15. ;*
  16. ;* SOURCE FILE NAME = SCSEGS.ASM
  17. ;*
  18. ;* DESCRIPTIVE NAME = Declare segments for OS2SCSI.DMD
  19. ;*
  20. ;*
  21. ;*
  22. ;* VERSION      V2.0
  23. ;*
  24. ;* DATE
  25. ;*
  26. ;* DESCRIPTION  Insures segments are linked in proper order according
  27. ;*              to OS/2 Device Driver model.
  28. ;*
  29. ;*
  30. ;* CHANGE ACTIVITY =
  31. ;*   DATE      FLAG        APAR   CHANGE DESCRIPTION
  32. ;*   --------  ----------  -----  --------------------------------------
  33. ;*   mm/dd/yy  @Vr.mpppxx  xxxxx  xxxxxxx
  34. ;*****************************************************************************/
  35.  
  36.  
  37. ;/*-------------------------------------*/
  38. ;/* Assembler Helper to order segments  */
  39. ;/*-------------------------------------*/
  40.  
  41. _DATA           segment dword public 'DATA'
  42. _DATA           ends
  43.  
  44. CONST           segment dword public 'CONST'
  45. CONST           ends
  46.  
  47. _BSS            segment dword public 'BSS'
  48. _BSS            ends
  49.  
  50. StaticCode      segment dword public 'CODE'
  51. StaticCode      ends
  52.  
  53. Code            segment dword public 'CODE'
  54. Code            ends
  55.  
  56. InitCode        segment dword public 'CODE'
  57. InitCode        ends
  58.  
  59. SwapCode        segment dword public 'CODE'
  60. SwapCode        ends
  61.  
  62. DGROUP          group   CONST, _BSS, _DATA
  63. StaticGroup     group   StaticCode, InitCode
  64. SwapGroup       group   SwapCode
  65.  
  66.         end
  67.