Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Small Memory Model: Details
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     The small memory model creates a program that contains two
     segments, one for code and one for data. This memory model causes
     the assembler to produce files with the .EXE extension.
 
     Code and data are limited to one segment each. With 16-bit
     segments, the total size of a small-model program cannot exceed
     128K. The defaults in small-model programs are NEAR code
     addressing and NEAR data addressing. The PROC distance is NEAR
     under the small-model option. @CodeSize is 0, @DataSize is 0, and
     @Model is 2.
 
     See also: .MODEL
                                    -♦-