home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / PRINTER / PRTSEGS.ASM < prev   
Assembly Source File  |  1995-04-14  |  2KB  |  49 lines

  1. ;*DDK*************************************************************************/
  2. ;
  3. ; COPYRIGHT (C) Microsoft Corporation, 1989
  4. ; COPYRIGHT    Copyright (C) 1995 IBM Corporation
  5. ;
  6. ;    The following IBM OS/2 WARP source code is provided to you solely for
  7. ;    the purpose of assisting you in your development of OS/2 WARP device
  8. ;    drivers. You may use this code in accordance with the IBM License
  9. ;    Agreement provided in the IBM Device Driver Source Kit for OS/2. This
  10. ;    Copyright statement may not be removed.;
  11. ;*****************************************************************************/
  12. ; SCCSID = src/dev/printer/prtsegs.asm, prtdd, ddk_subset, b_bdd.032 94/09/15
  13. ;/**********************************************************************
  14. ;/*                                                                    *
  15. ;/*                                                                    *
  16. ;/*                                                                    *
  17. ;/**********************************************************************
  18.  
  19. DSEG    segment word public 'DATA'
  20. DSEG    ends
  21.  
  22. _DATA   segment word public 'DATA'
  23. _DATA   ends
  24.  
  25. CONST   segment word public 'CONST'
  26. CONST   ends
  27.  
  28. _BSS    segment word public 'BSS'
  29. _BSS    ends
  30.  
  31. CSEG    segment word public 'CODE'
  32. CSEG    ends
  33.  
  34. RMCode  segment word public 'CODE'
  35. RMCode  ends
  36.  
  37. _TEXT   segment word public 'CODE'
  38. _TEXT   ends
  39.  
  40. SWAPSEG segment word public 'CODE'
  41. SWAPSEG ends
  42.  
  43. ; Programmer cannot control location of CONST and _BSS class segments
  44. ; being grouped.  They are always last.  Do not put anything in these
  45. ; segments since they will be truncated after device driver initialization.
  46. DGROUP  GROUP   DSEG, _DATA, CONST, _BSS
  47. CGROUP  GROUP   CSEG, RMCode, _TEXT
  48.         end
  49.