Ignore:
Timestamp:
Apr 1, 2006, 10:48:09 PM (19 years ago)
Author:
bird
Message:

#89: wlink defines end, _end, edata and _edata, so split it all up even more so wlink doesn't get upset.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/emx/src/libend/386/endlink386.asm

    r1568 r2690  
    11; endlink386.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes
    22
     3; only link386 uses this, both ilink and wlink defines these symbols.
    34                .386
    45
     
    67                PUBLIC  _edata
    78
     9
     10TEXT32          SEGMENT PUBLIC PARA USE32 'CODE'
     11TEXT32          ENDS
     12________TEXT    SEGMENT PUBLIC PARA USE32 'CODE'
     13________TEXT    ENDS
     14CGROUP          GROUP TEXT32, ________TEXT
     15
     16
    817DATA32          SEGMENT PUBLIC PARA USE32 'DATA'
    918DATA32          ENDS
     19________DATA    SEGMENT PUBLIC PARA USE32 'DATA'
    1020
    11 ________DATA    SEGMENT PUBLIC PARA USE32 'DATA'
    1221_edata          LABEL BYTE
     22
    1323________DATA    ENDS
    14 
    15 
    1624c_common        SEGMENT PUBLIC PARA USE32 'BSS'
    1725c_common        ENDS
     26________BSS     SEGMENT PUBLIC PARA USE32 'BSS'
    1827
    19 ________BSS     SEGMENT PUBLIC PARA USE32 'BSS'
    2028_end            LABEL BYTE
     29
    2130________BSS     ENDS
    22 
    2331DGROUP          GROUP   DATA32, ________DATA, c_common, ________BSS
    2432
Note: See TracChangeset for help on using the changeset viewer.