home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / ASM / STRTUP10.ZIP / STARTUP.ZIP / INCLUDES / STARTUP.INC < prev   
Encoding:
Text File  |  1997-02-28  |  1.3 KB  |  59 lines

  1. .nolist
  2. ifndef    STARTUP_INC
  3.  
  4. comment ÷
  5.         STARTUP.INC                                             V1.00
  6. ==========================================================================
  7. NAME
  8.     STARTUP.INC        Basic include file for ASM source files
  9.                 referencing variables defined in STARTUP
  10.                 code.
  11. DESCRIPTION
  12.     This include file cotains the references to all variables defined
  13.     startup code.
  14.  
  15. PROGRAMMING NOTES
  16.     Listing is turned off so that include files do not lengthen source
  17.     file listings.
  18.  
  19. AUTHOR
  20.     Raymond Moon - 18 Feb 95
  21.     Copyright 1995 - Raymond Moon
  22.     ALL RIGHTS RESERVED
  23.  
  24. HISTORY
  25.     Version - Date        - Remarks
  26.     1.00    - 18 Feb 95    - Original
  27.  
  28. ==========================================================================
  29.     ÷ End of Comment
  30.  
  31. ;----------------------------
  32. ;    Define equate to identify this include file to preclude being
  33. ;    included more than once.
  34.  
  35. STARTUP_INC    equ    1
  36.  
  37. ;----------------------------
  38. ;    Define externdefs from startup procedure.
  39.  
  40.     .DATA?
  41.  
  42. externdef    DGRP:word
  43. externdef    ENVIRON:word
  44. externdef    NEXTPARA:word
  45. externdef    OSMAJOR:byte
  46. externdef    OSMINOR:byte
  47. externdef    PSP:word
  48. externdef    STACK_BOTTOM:word
  49.  
  50. externdef    ENV_STR_LEN:word    ; StartUp3 code only
  51.  
  52. @CurSeg ends
  53.  
  54. ;----------------------------
  55. ;    Clean up
  56.  
  57. endif                    ; Close opening ifndef
  58. .list                    ; Turn list back on
  59.