]> git.sur5r.net Git - cc65/commitdiff
The pleasp.s module is no longer in use.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 12:56:54 +0000 (12:56 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 12:56:54 +0000 (12:56 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4094 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/Makefile
libsrc/runtime/pleasp.s [deleted file]

index b3bfd7876e92a359e5f77c69381f4bf69ee20742..19cda62daf8ed994c53af0b8761358a61caa9318 100644 (file)
@@ -162,7 +162,6 @@ OBJS =      add.o           \
                ne.o            \
                neg.o           \
                or.o            \
-       pleasp.o        \
        popa.o          \
                popsreg.o       \
        push1.o         \
diff --git a/libsrc/runtime/pleasp.s b/libsrc/runtime/pleasp.s
deleted file mode 100644 (file)
index d1fecaa..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-;
-; Ullrich von Bassewitz, 21.08.1998
-;
-; CC65 runtime: Load effective address with offset in A relative to SP and push it
-;
-
-       .export         pleaasp
-       .import         pushax
-       .importzp       sp
-
-.proc  pleaasp
-
-       ldx     sp+1            ; Get high byte
-       clc
-       adc     sp
-       bcc     @L9
-       inx
-@L9:   jmp     pushax
-
-.endproc
-
-
-