home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / ASM / STRTUP10.ZIP / STARTUP.ZIP / STARTUP / SUDATA3.ASM < prev   
Encoding:
Assembly Source File  |  1997-02-28  |  1.8 KB  |  94 lines

  1.     page 60, 132
  2.     title    START_UP3 DATA - Common Data for Startup Procedures
  3.     name    SUDATA3
  4. comment ÷
  5.     START_UP3 DATA                        V1.00
  6. ==========================================================================
  7. NAME
  8.     START_UP3 DATA
  9.  
  10. SYNOPSIS
  11.     None
  12.  
  13. DESCRIPTION
  14.     This code contains the common data unique to the startup3 procedure.
  15.     This data is:
  16.         ENV_STR_LEN - Length of environmental strings
  17.  
  18. CAUTION
  19.     None
  20.  
  21. RETURNS
  22.     NA
  23.  
  24. PROGRAMMING NOTES
  25.     This module is assembled and stored in the alib? libraries so that
  26.     storage for the common startup variables will be linked into the
  27.     program by the linker.
  28.  
  29.     Assembled with Microsoft MASM V6.11d
  30.  
  31.     There is no memory model dependent code.
  32.  
  33. REGISTER USAGE
  34.     None
  35.  
  36. MEMORY UTILIZATION
  37.     2 bytes for all memory models
  38.  
  39. EXTERNAL LIBRARIES
  40.     None
  41.     
  42. EXTERNAL PROCEDURES
  43.     None
  44.  
  45. INTERUPTS CALLED
  46.     None
  47.  
  48. GLOBAL NAMES
  49.     Following data is global
  50.         ENV_STR_LEN-  Length of environmental strings
  51.  
  52. AUTHOR
  53.     Raymond Moon - 17 Dec 95
  54.  
  55.     Copyright (c) 1995 - Raymond Moon
  56.     ALL RIGHTS RESERVED
  57.  
  58. HISTORY
  59.     Version    - Date        - Remarks
  60.     1.00    - 17 Dec 95    - Orginal
  61.  
  62. ==========================================================================
  63.     ÷    End of Comment
  64.  
  65. ;----------------------------
  66. ;    Make the small memory model the default.
  67.  
  68. ifndef    memmod
  69. memmod    equ    <small>
  70. endif
  71.  
  72. ;----------------------------
  73. ;    Specify processor, memory model, language and ES register assume. 
  74.  
  75.     include procesor.inc            ; Specify target processor
  76. %    .model memmod, fortran
  77.     assume es:DGROUP
  78.  
  79. ;----------------------------
  80. ;    Include Files
  81.  
  82.     include startup.inc
  83.  
  84. ;=========================================================================
  85. ;    DATA
  86. ;=========================================================================
  87.  
  88.     .DATA?
  89.  
  90. ENV_STR_LEN    dw    ?    ; Length of environmental strings
  91.  
  92. @CurSeg ends
  93.     end
  94.