From: ceriel Date: Wed, 28 Aug 1991 15:43:46 +0000 (+0000) Subject: end, etext, edata library X-Git-Tag: release-5-5~1023 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=239535a02ae709d7bccf36ca3a6e325dc40e6a91;p=ack.git end, etext, edata library --- diff --git a/mach/z8000/libend/.distr b/mach/z8000/libend/.distr new file mode 100644 index 000000000..b48ec8483 --- /dev/null +++ b/mach/z8000/libend/.distr @@ -0,0 +1,2 @@ +LIST +end_s.a diff --git a/mach/z8000/libend/LIST b/mach/z8000/libend/LIST new file mode 100644 index 000000000..2efbd3eb2 --- /dev/null +++ b/mach/z8000/libend/LIST @@ -0,0 +1,5 @@ +end_s.a +edata.s +em_end.s +end.s +etext.s diff --git a/mach/z8000/libend/edata.s b/mach/z8000/libend/edata.s new file mode 100644 index 000000000..a742b6f11 --- /dev/null +++ b/mach/z8000/libend/edata.s @@ -0,0 +1,7 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.define _edata +.sect .data +_edata: diff --git a/mach/z8000/libend/em_end.s b/mach/z8000/libend/em_end.s new file mode 100644 index 000000000..6848f6642 --- /dev/null +++ b/mach/z8000/libend/em_end.s @@ -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: diff --git a/mach/z8000/libend/end.s b/mach/z8000/libend/end.s new file mode 100644 index 000000000..93a1e6e00 --- /dev/null +++ b/mach/z8000/libend/end.s @@ -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: diff --git a/mach/z8000/libend/etext.s b/mach/z8000/libend/etext.s new file mode 100644 index 000000000..6651ca96e --- /dev/null +++ b/mach/z8000/libend/etext.s @@ -0,0 +1,7 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.define _etext +.sect .text +_etext: