source: trunk/emx/src/libend/386/end.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.4
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 819 bytes
Line 
1; end.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes
2
3; ilink and link386 uses this, wlink defines both of these.
4
5 .386
6
7 PUBLIC __end
8 PUBLIC __edata
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
34
Note: See TracBrowser for help on using the repository browser.