From 98da0bbffbfe1d3f6dc80aec95287d6191c70be2 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 15 May 1987 12:55:51 +0000 Subject: [PATCH] added end.s --- mach/pdp/libem/Makefile | 9 +++++++-- mach/pdp/libem/end.s | 16 ++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 mach/pdp/libem/end.s diff --git a/mach/pdp/libem/Makefile b/mach/pdp/libem/Makefile index ee017a738..d4a42a35d 100644 --- a/mach/pdp/libem/Makefile +++ b/mach/pdp/libem/Makefile @@ -1,21 +1,26 @@ -all: head_em.o libem_o.a +all: head_em.o libem_o.a end.o install: cp cp: all ../../install head_em.o head_em ../../install libem_o.a tail_em + ../../install end.o end_em cmp: all -../../compare head_em.o head_em -../../compare libem_o.a tail_em + -../../compare end.o end_em head_em.o: head_em.s pdp -c head_em.s +end.o: end.s + pdp -c end.s + libem_o.a: libem_s.a - ASAR=ar ; export ASAR ; march . libem_o.a + ASAR=aal ; export ASAR ; march . libem_o.a clean: rm -f *.o libem_o.a diff --git a/mach/pdp/libem/end.s b/mach/pdp/libem/end.s new file mode 100644 index 000000000..37e1cef2c --- /dev/null +++ b/mach/pdp/libem/end.s @@ -0,0 +1,16 @@ +.define endtext,enddata,endbss,_etext,_edata,_end +.sect .text +.sect .rom +.sect .data +.sect .bss +.sect .end ! only for declaration of _end and endbss. + + .sect .text +endtext: +_etext: + .sect .data +enddata: +_edata: + .sect .end +_end: +endbss: -- 2.34.1