Microsoft Utilities Errors Help (utilerr.hlp) (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.
L1127
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Fatal LINK error L1127
 
     far segment references not allowed with /TINY
 
     The /TINY option for producing a .COM file was used in a program
     that has a far segment reference.
 
     Far segment references are not compatible with the .COM-file
     format. High-level-language programs cause this error unless the
     language supports the tiny memory model. An assembly-language
     program that references a segment address also causes this error.
 
     For example:
 
          mov     ax, seg mydata
                                    -♦-