Changeset 2690 for trunk/emx/src/libend/386/end.asm
- Timestamp:
- Apr 1, 2006, 10:48:09 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/emx/src/libend/386/end.asm
r1568 r2690 1 1 ; end.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes 2 3 ; ilink and link386 uses this, wlink defines both of these. 2 4 3 5 .386 4 6 5 PUBLIC WEAK$ZERO6 WEAK$ZERO = 07 8 ;PUBLIC _end - ilink defines this.9 ;PUBLIC _edata - ilink defines this.10 PUBLIC _etext11 7 PUBLIC __end 12 8 PUBLIC __edata 13 PUBLIC __etext14 9 15 10 TEXT32 SEGMENT PUBLIC PARA USE32 'CODE' 16 11 TEXT32 ENDS 17 18 12 ________TEXT SEGMENT PUBLIC PARA USE32 'CODE' 19 __etext LABEL BYTE20 _etext LABEL BYTE21 13 ________TEXT ENDS 22 23 14 CGROUP GROUP TEXT32, ________TEXT 24 15 … … 26 17 DATA32 SEGMENT PUBLIC PARA USE32 'DATA' 27 18 DATA32 ENDS 19 ________DATA SEGMENT PUBLIC PARA USE32 'DATA' 28 20 29 ________DATA SEGMENT PUBLIC PARA USE32 'DATA'30 21 __edata LABEL BYTE 31 ; _edata LABEL BYTE - ilink defines this. 22 32 23 ________DATA ENDS 33 34 35 24 c_common SEGMENT PUBLIC PARA USE32 'BSS' 36 25 c_common ENDS 26 ________BSS SEGMENT PUBLIC PARA USE32 'BSS' 37 27 38 ________BSS SEGMENT PUBLIC PARA USE32 'BSS'39 28 __end LABEL BYTE 40 ; _end LABEL BYTE - ilink defines this. 29 41 30 ________BSS ENDS 42 43 31 DGROUP GROUP DATA32, ________DATA, c_common, ________BSS 44 32 45 33 END 34
Note:
See TracChangeset
for help on using the changeset viewer.