home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / DASD / IBM / IBM2FLPY / FL2SEGS.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-04-14  |  2.4 KB  |  77 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 = %w% %e%
  12.  
  13.         page    ,132
  14.  
  15. ;/*****************************************************************************
  16. ;*
  17. ;* SOURCE FILE NAME = FL2SEGS.ASM
  18. ;*
  19. ;* DESCRIPTIVE NAME = IBM2FLPY.ADD - Adapter Driver for ABIOS Diskette
  20. ;*
  21. ;*
  22. ;*
  23. ;* VERSION      V2.0
  24. ;*
  25. ;* DATE
  26. ;*
  27. ;* DESCRIPTION : Assembler helper to order segments
  28. ;*
  29. ;*
  30. ;*
  31. ;* CHANGE ACTIVITY =
  32. ;*   DATE      FLAG        APAR   CHANGE DESCRIPTION
  33. ;*   --------  ----------  -----  --------------------------------------
  34. ;*   05/05/94  @V82589     82589  Reorder segments so that the ADDCALLS
  35. ;*                                DHCALLS libraries are in the resident
  36. ;*                                segment.
  37. ;*****************************************************************************/
  38.  
  39. DDHeader        segment dword public 'DATA'     ;* Device driver header
  40. DDHeader        ends
  41.  
  42. CONST           segment dword public 'CONST'    ;* Unused C stuff
  43. CONST           ends
  44.  
  45. _BSS            segment dword public 'BSS'      ;* Unused C stuff
  46. _BSS            ends
  47.  
  48. LIBDATA         segment dword public 'DATA'     ;* ADD common services data
  49. LIBDATA         ends
  50.  
  51. _DATA           segment dword public 'DATA'     ;* Device driver data
  52. _DATA           ends
  53.  
  54.  
  55. StaticCode      segment dword public 'CODE'     ;* Permanently resident code
  56. StaticCode      ends
  57.  
  58. Code            segment dword public 'CODE'     ;* DevHelp code
  59. Code            ends
  60.  
  61. InitCode        segment dword public 'CODE'     ;* Initialization code
  62. InitCode        ends
  63.  
  64.  
  65. SwapCode        segment dword public 'CODE'     ;* Swappable code
  66. SwapCode        ends
  67.  
  68. LIBCODE         segment dword public 'CODE'     ;* ADD common services code
  69. LIBCODE         ends
  70.  
  71.  
  72. DGROUP          group   DDHeader, CONST, _BSS, LIBDATA, _DATA
  73. StaticGroup     group   LIBCODE, Code, StaticCode, InitCode
  74. SwapGroup       group   SwapCode
  75.  
  76.         end
  77.