home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Fortran.51 / DISK5 / VERSION.IN$ / VERSION.bin
Text File  |  1989-09-27  |  575b  |  34 lines

  1. ;***
  2. ;version.inc - defines current memory model
  3. ;
  4. ;    Copyright (c) 1987-1990, Microsoft Corporation.  All rights reserved.
  5. ;
  6. ;Purpose:
  7. ;    This file defines the current memory model being used.
  8. ;
  9. ;*******************************************************************************
  10.  
  11. ?PLM=    0
  12.  
  13. ifdef    _WINDOWS
  14.     ?WIN=    1    ; windows entry/exit sequence
  15. else
  16.     ?WIN=    0
  17. endif
  18.  
  19. ifdef    mem_s
  20.     memS    equ    1    ; small model
  21. endif
  22.  
  23. ifdef    mem_m
  24.     memM    equ    1    ; medium model
  25. endif
  26.  
  27. ifdef    mem_c
  28.     memC    equ    1    ; compact model
  29. endif
  30.  
  31. ifdef    mem_l
  32.     memL    equ    1    ; large model
  33. endif
  34.