Microsoft Utilities Errors Help (utilerr.hlp) (Topic list)
L1071
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Fatal LINK error L1071
 
     segment _TEXT exceeds 64K-16
 
     This error is likely to occur only in small-model C programs, but
     it can occur when any program with a segment named _TEXT is linked
     using the /DOSSEG option of the LINK command.
 
     Small-model C programs must reserve code addresses 0 and 1; this
     range is increased to 16 for alignment purposes.
 
     Try compiling and linking using the medium or large model. If the
     program is in C, use CL's /NT option or the #pragma alloc_text to
     build smaller segments.
                                    -♦-