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 |
|
---|
10 | TEXT32 SEGMENT PUBLIC PARA USE32 'CODE'
|
---|
11 | TEXT32 ENDS
|
---|
12 | ________TEXT SEGMENT PUBLIC PARA USE32 'CODE'
|
---|
13 | ________TEXT ENDS
|
---|
14 | CGROUP GROUP TEXT32, ________TEXT
|
---|
15 |
|
---|
16 |
|
---|
17 | DATA32 SEGMENT PUBLIC PARA USE32 'DATA'
|
---|
18 | DATA32 ENDS
|
---|
19 | ________DATA SEGMENT PUBLIC PARA USE32 'DATA'
|
---|
20 |
|
---|
21 | __edata LABEL BYTE
|
---|
22 |
|
---|
23 | ________DATA ENDS
|
---|
24 | c_common SEGMENT PUBLIC PARA USE32 'BSS'
|
---|
25 | c_common ENDS
|
---|
26 | ________BSS SEGMENT PUBLIC PARA USE32 'BSS'
|
---|
27 |
|
---|
28 | __end LABEL BYTE
|
---|
29 |
|
---|
30 | ________BSS ENDS
|
---|
31 | DGROUP GROUP DATA32, ________DATA, c_common, ________BSS
|
---|
32 |
|
---|
33 | END
|
---|
34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.