source: trunk/emx/src/libend/386/endtext.asm@ 2690

Last change on this file since 2690 was 2690, checked in by bird, 20 years ago

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

File size: 826 bytes
Line 
1; endtext.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes
2
3 .386
4
5; none of the linkers define these.
6
7 PUBLIC _etext
8 PUBLIC __etext
9
10TEXT32 SEGMENT PUBLIC PARA USE32 'CODE'
11TEXT32 ENDS
12________TEXT SEGMENT PUBLIC PARA USE32 'CODE'
13
14__etext LABEL BYTE
15_etext LABEL BYTE
16
17________TEXT ENDS
18CGROUP GROUP TEXT32, ________TEXT
19
20
21DATA32 SEGMENT PUBLIC PARA USE32 'DATA'
22DATA32 ENDS
23________DATA SEGMENT PUBLIC PARA USE32 'DATA'
24________DATA ENDS
25c_common SEGMENT PUBLIC PARA USE32 'BSS'
26c_common ENDS
27________BSS SEGMENT PUBLIC PARA USE32 'BSS'
28________BSS ENDS
29DGROUP GROUP DATA32, ________DATA, c_common, ________BSS
30
31 END
Note: See TracBrowser for help on using the repository browser.