fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
FORTRAN Compiler Memory Model Option
                                             Up Contents Index Back
─────FORTRAN Compiler Memory Model Option───────────────────────────────────
 
     Use the Memory Model option to control how your program accesses
     code and data.
 
     Model     Characteristics
 
     Medium    Program data restricted to 64K. Code can exceed 64K but
               each object module (.OBJ file) is limited to 64K.
 
     Large     Data and code can both exceed 64K. Each object module is
               limited to 64K.
 
     Huge      Same as large model, but all formal array arguments are
               assumed to exceed 64K.
 
     See Also: Memory-Model Options (/A)
                                    -♦-