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 - -