home *** CD-ROM | disk | FTP | other *** search
- page 60, 132
- title START_UP3 DATA - Common Data for Startup Procedures
- name SUDATA3
- comment ÷
- START_UP3 DATA V1.00
- ==========================================================================
- NAME
- START_UP3 DATA
-
- SYNOPSIS
- None
-
- DESCRIPTION
- This code contains the common data unique to the startup3 procedure.
- This data is:
- ENV_STR_LEN - Length of environmental strings
-
- CAUTION
- None
-
- RETURNS
- NA
-
- PROGRAMMING NOTES
- This module is assembled and stored in the alib? libraries so that
- storage for the common startup variables will be linked into the
- program by the linker.
-
- Assembled with Microsoft MASM V6.11d
-
- There is no memory model dependent code.
-
- REGISTER USAGE
- None
-
- MEMORY UTILIZATION
- 2 bytes for all memory models
-
- EXTERNAL LIBRARIES
- None
-
- EXTERNAL PROCEDURES
- None
-
- INTERUPTS CALLED
- None
-
- GLOBAL NAMES
- Following data is global
- ENV_STR_LEN- Length of environmental strings
-
- AUTHOR
- Raymond Moon - 17 Dec 95
-
- Copyright (c) 1995 - Raymond Moon
- ALL RIGHTS RESERVED
-
- HISTORY
- Version - Date - Remarks
- 1.00 - 17 Dec 95 - Orginal
-
- ==========================================================================
- ÷ End of Comment
-
- ;----------------------------
- ; Make the small memory model the default.
-
- ifndef memmod
- memmod equ <small>
- endif
-
- ;----------------------------
- ; Specify processor, memory model, language and ES register assume.
-
- include procesor.inc ; Specify target processor
- % .model memmod, fortran
- assume es:DGROUP
-
- ;----------------------------
- ; Include Files
-
- include startup.inc
-
- ;=========================================================================
- ; DATA
- ;=========================================================================
-
- .DATA?
-
- ENV_STR_LEN dw ? ; Length of environmental strings
-
- @CurSeg ends
- end
-