errors.hlp (Topic list)
Error Message
                                                  Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Fatal LINK error L1127
 
     far segment references not allowed with /TINY
 
     The /TINY option (causing the linker to produce a .COM file) was
     used with modules that have a far segment reference.
 
     Far segment references are not compatible with the .COM file
     format. High-level-language modules cause this error (unless the
     language supports the tiny memory model). Assembly code
     referencing a segment address also produces this error.
 
     For example:
 
          mov     ax, seg mydata
                                    -♦-