home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / CLOCK / CLKSEG.INC < prev    next >
Text File  |  1995-04-14  |  1KB  |  39 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 = @(#)clkseg.inc    6.2 91/02/18
  13. ;***    Physical Clock Device Driver
  14. ;
  15. ;    SCCSID = @(#)clkseg.inc    6.2 91/02/18
  16. ;
  17. ;    DESCRIPTION
  18. ;    This module contains all the clock device driver's segment
  19. ;    declarations.
  20. ;    The data segment MUST be defined before the code to ensure
  21. ;    proper ordering of the segments in the ".SYS" module.
  22. ;
  23. ;    MODIFICATION HISTORY
  24. ;    04/07/89 MTS    Created.
  25.  
  26.     .286p
  27.  
  28. ClkData SEGMENT DWORD PUBLIC 'DATA';The first portion of the data
  29.                     ;segment must be the device driver
  30. ClkData ENDS                ;header, then comes local data.
  31.  
  32.  
  33. ClkCode SEGMENT DWORD PUBLIC 'CODE';Code segment name
  34. ClkCode ENDS
  35.  
  36. ClkSwap SEGMENT DWORD PUBLIC 'CODE';Swappable Code segment name
  37. ClkSwap ENDS
  38.  
  39.