source: trunk/emx/src/libend/386/endlink386.asm

Last change on this file 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.

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 833 bytes
Line 
1; endlink386.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes
2
3; only link386 uses this, both ilink and wlink defines these symbols.
4 .386
5
6 PUBLIC _end
7 PUBLIC _edata
8
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
17DATA32 SEGMENT PUBLIC PARA USE32 'DATA'
18DATA32 ENDS
19________DATA SEGMENT PUBLIC PARA USE32 'DATA'
20
21_edata LABEL BYTE
22
23________DATA ENDS
24c_common SEGMENT PUBLIC PARA USE32 'BSS'
25c_common ENDS
26________BSS SEGMENT PUBLIC PARA USE32 'BSS'
27
28_end LABEL BYTE
29
30________BSS ENDS
31DGROUP GROUP DATA32, ________DATA, c_common, ________BSS
32
33 END
Note: See TracBrowser for help on using the repository browser.