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