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