LINK Help (linker.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.
L1127
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     LINK Fatal 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, the following causes this error:
 
          mov     ax, seg mydata
                                    -♦-