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

Last change on this file was 3847, checked in by bird, 12 years ago

svn:eol-style: native

  • Property svn:eol-style set to native
File size: 795 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.