From: cuz Date: Sat, 10 Jun 2000 16:06:05 +0000 (+0000) Subject: Routines no longer used X-Git-Tag: V2.12.0~3465 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=61ca3a4abe93102020b639bd915417e95cd2cde9;p=cc65 Routines no longer used git-svn-id: svn://svn.cc65.org/cc65/trunk@47 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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 - -