Last change
on this file was 3847, checked in by bird, 11 years ago |
svn:eol-style: native
|
-
Property svn:eol-style
set to
native
|
File size:
603 bytes
|
Line | |
---|
1 | ; end.asm (emx+gcc) -- Copyright (c) 1995 by Eberhard Mattes
|
---|
2 | ; Converted to NASM -- Copyright (c) 2005 by knut st. osmundsen
|
---|
3 |
|
---|
4 |
|
---|
5 |
|
---|
6 | global _etext
|
---|
7 | global __etext
|
---|
8 |
|
---|
9 | segment TEXT32 public align=16 use32 class=CODE FLAT
|
---|
10 | segment ________TEXT public align=16 use32 class=CODE FLAT
|
---|
11 | __etext:
|
---|
12 | _etext:
|
---|
13 | group CGROUP TEXT32 ________TEXT
|
---|
14 |
|
---|
15 | segment DATA32 public align=16 use32 class=DATA FLAT
|
---|
16 | segment ________DATA public align=16 use32 class=DATA FLAT
|
---|
17 | segment c_common public align=16 use32 class=BSS FLAT
|
---|
18 | segment ________BSS public align=16 use32 class=BSS FLAT
|
---|
19 |
|
---|
20 | group DGROUP DATA32 ________DATA c_common ________BSS
|
---|
21 |
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.