]> git.sur5r.net Git - cc65/commitdiff
Remove unused stuff
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Jul 2001 09:07:59 +0000 (09:07 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Jul 2001 09:07:59 +0000 (09:07 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@828 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/Makefile
libsrc/runtime/staxspp.s [deleted file]
libsrc/runtime/steaxspp.s [deleted file]

index 27b037a271ff154fb8be21a000a09309c39af0fd..39b792136e29b48077a7dc1ccdd241332a8c2edb 100644 (file)
@@ -172,10 +172,8 @@ OBJS =     add.o           \
        staspidx.o      \
                staxsp.o        \
        staxspi.o       \
-       staxspp.o       \
                steaxsp.o       \
        steaxspi.o      \
-       steaxspp.o      \
        stkchk.o        \
                sub.o           \
                subeqsp.o       \
diff --git a/libsrc/runtime/staxspp.s b/libsrc/runtime/staxspp.s
deleted file mode 100644 (file)
index 26f19f7..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-;
-; Ullrich von Bassewitz, 25.10.2000
-;
-; CC65 runtime: Store a/x indirect into address at top of stack
-;
-
-               .export         staxspp
-       .import         incsp2
-       .importzp       sp, ptr1
-
-.proc  staxspp
-
-.ifpc02
-       pha
-       lda     (sp)
-       sta     ptr1
-       ldy     #1
-       lda     (sp),y
-       sta     ptr1+1
-       txa
-       sta     (ptr1),y
-       pla
-       sta     (ptr1)
-.else
-       pha
-       ldy     #0
-       lda     (sp),y
-       sta     ptr1
-       iny
-       lda     (sp),y
-       sta     ptr1+1
-       txa
-       sta     (ptr1),y
-       pla
-       dey
-       sta     (ptr1),y
-.endif
-       jmp     incsp2          ; Drop address
-
-.endproc
-
-
diff --git a/libsrc/runtime/steaxspp.s b/libsrc/runtime/steaxspp.s
deleted file mode 100644 (file)
index 5116556..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-;
-; Ullrich von Bassewitz, 22.06.1998
-;
-; CC65 runtime: Store eax at the address on top of stack.
-;
-
-
-       .export         steaxspp
-       .import         popax
-       .importzp       sreg, ptr1
-
-.proc  steaxspp
-
-       pha
-       txa
-       pha
-       jsr     popax           ; get address
-       sta     ptr1
-       stx     ptr1+1
-       ldy     #3
-       lda     sreg+1
-       sta     (ptr1),y
-       dey
-       lda     sreg
-       sta     (ptr1),y
-       dey
-       pla
-       tax
-       sta     (ptr1),y
-       dey
-       pla
-       sta     (ptr1),y
-       rts
-
-.endproc
-
-