]> git.sur5r.net Git - cc65/commitdiff
Routines no longer used
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 10 Jun 2000 16:06:05 +0000 (16:06 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 10 Jun 2000 16:06:05 +0000 (16:06 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@47 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/Makefile
libsrc/runtime/ldasp.s [deleted file]
libsrc/runtime/ldausp.s [deleted file]

index 775d60fc994e0c5d510d536df9993074f8294a40..d6024d1faf5ad717c6fcb9c486dccdfb6c3e1092 100644 (file)
@@ -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 (file)
index ae08868..0000000
+++ /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 (file)
index aaa47c2..0000000
+++ /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
-
-