From 61ca3a4abe93102020b639bd915417e95cd2cde9 Mon Sep 17 00:00:00 2001 From: cuz Date: Sat, 10 Jun 2000 16:06:05 +0000 Subject: [PATCH] Routines no longer used git-svn-id: svn://svn.cc65.org/cc65/trunk@47 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/runtime/Makefile | 2 +- libsrc/runtime/ldasp.s | 17 ----------------- libsrc/runtime/ldausp.s | 16 ---------------- 3 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 libsrc/runtime/ldasp.s delete mode 100644 libsrc/runtime/ldausp.s diff --git a/libsrc/runtime/Makefile b/libsrc/runtime/Makefile index 775d60fc9..d6024d1fa 100644 --- a/libsrc/runtime/Makefile +++ b/libsrc/runtime/Makefile @@ -20,7 +20,7 @@ OBJS = runtime.o mul.o div.o push.o inc.o dec.o shl.o shr.o add.o\ aslax2.o asrax2.o shrax2.o aslax3.o asrax3.o shrax3.o\ enter.o leave.o leaysp.o popsreg.o ldai.o ldaxi.o ldauisp.o\ ldaui.o pushw.o pushb.o staxsp.o ldaxsp.o addeqsp.o\ - ldasp.o ldausp.o bpushbsp.o pushwsp.o pushbsp.o + bpushbsp.o pushwsp.o pushbsp.o LOBJS = lruntime.o lconvert.o ladd.o lsub.o lrsub.o leq.o lne.o\ lneg.o lbneg.o lcompl.o lpush.o land.o lor.o lxor.o ldeaxi.o\ diff --git a/libsrc/runtime/ldasp.s b/libsrc/runtime/ldasp.s deleted file mode 100644 index ae0886803..000000000 --- a/libsrc/runtime/ldasp.s +++ /dev/null @@ -1,17 +0,0 @@ -; -; Ullrich von Bassewitz, 31.08.1998 -; -; CC65 runtime: Load a from offset in stack -; - - .export ldasp, ldaysp - .importzp sp - -ldasp: ldy #0 -ldaysp: ldx #0 - lda (sp),y - bpl L9 ; Jump if positive - dex -L9: rts - - diff --git a/libsrc/runtime/ldausp.s b/libsrc/runtime/ldausp.s deleted file mode 100644 index aaa47c272..000000000 --- a/libsrc/runtime/ldausp.s +++ /dev/null @@ -1,16 +0,0 @@ -; -; Ullrich von Bassewitz, 31.08.1998 -; -; CC65 runtime: Load a unsigned from offset in stack -; - - .export ldausp, ldauysp - .importzp sp - -ldausp: ldy #0 -ldauysp: - ldx #0 - lda (sp),y - rts - -