end, etext, edata library

This commit is contained in:
ceriel 1991-08-28 15:43:46 +00:00
parent 8b3009d6e3
commit 239535a02a
6 changed files with 42 additions and 0 deletions

2
mach/z8000/libend/.distr Normal file
View file

@ -0,0 +1,2 @@
LIST
end_s.a

5
mach/z8000/libend/LIST Normal file
View file

@ -0,0 +1,5 @@
end_s.a
edata.s
em_end.s
end.s
etext.s

View file

@ -0,0 +1,7 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.define _edata
.sect .data
_edata:

View file

@ -0,0 +1,14 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .end ! only for declaration of _end, __end and endbss.
.define endtext,enddata,endbss,__end
.sect .text
endtext:
.sect .data
enddata:
.sect .end
__end:
endbss:

7
mach/z8000/libend/end.s Normal file
View file

@ -0,0 +1,7 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.define _end
.sect .end ! only for declaration of _end, __end and endbss.
_end:

View file

@ -0,0 +1,7 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.define _etext
.sect .text
_etext: