From 6fccaef8577357e0d61a80c05d4f4536fd72d59d Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 28 Nov 2014 22:07:22 +0000 Subject: [PATCH] dragon: use usermem_sam This provides a different implementation of the SAM copier routines that do not touch the stack at awkward moments --- Kernel/platform-dragon/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-dragon/Makefile b/Kernel/platform-dragon/Makefile index ae6dfa2a..17aa8ce3 100644 --- a/Kernel/platform-dragon/Makefile +++ b/Kernel/platform-dragon/Makefile @@ -3,7 +3,7 @@ CSRCS = devlpr.c devtty.c devrd.c CSRCS += devices.c main.c libc.c ASRCS = p6809.s crt0.s -ASRCS += tricks.s commonmem.s +ASRCS += tricks.s commonmem.s usermem_sam.s COBJS = $(CSRCS:.c=$(BINEXT)) AOBJS = $(ASRCS:.s=$(BINEXT)) @@ -28,7 +28,7 @@ d64_1.rom: setup.s image: d64_1.rom $(CROSS_LD) -o ../fuzix.bin --map=../fuzix.map --script=fuzix.link \ setup.o \ - crt0.o commonmem.o \ + crt0.o commonmem.o usermem_sam.o \ p6809.o ../start.o ../version.o ../lowlevel-6809.o \ tricks.o main.o ../timer.o ../kdata.o devrd.o devices.o \ ../devio.o ../filesys.o ../process.o ../inode.o ../syscall_fs.o \ -- 2.34.1