home *** CD-ROM | disk | FTP | other *** search
- .nolist
- ifndef STARTUP_INC
-
- comment ÷
- STARTUP.INC V1.00
- ==========================================================================
- NAME
- STARTUP.INC Basic include file for ASM source files
- referencing variables defined in STARTUP
- code.
- DESCRIPTION
- This include file cotains the references to all variables defined
- startup code.
-
- PROGRAMMING NOTES
- Listing is turned off so that include files do not lengthen source
- file listings.
-
- AUTHOR
- Raymond Moon - 18 Feb 95
- Copyright 1995 - Raymond Moon
- ALL RIGHTS RESERVED
-
- HISTORY
- Version - Date - Remarks
- 1.00 - 18 Feb 95 - Original
-
- ==========================================================================
- ÷ End of Comment
-
- ;----------------------------
- ; Define equate to identify this include file to preclude being
- ; included more than once.
-
- STARTUP_INC equ 1
-
- ;----------------------------
- ; Define externdefs from startup procedure.
-
- .DATA?
-
- externdef DGRP:word
- externdef ENVIRON:word
- externdef NEXTPARA:word
- externdef OSMAJOR:byte
- externdef OSMINOR:byte
- externdef PSP:word
- externdef STACK_BOTTOM:word
-
- externdef ENV_STR_LEN:word ; StartUp3 code only
-
- @CurSeg ends
-
- ;----------------------------
- ; Clean up
-
- endif ; Close opening ifndef
- .list ; Turn list back on
-