]> git.sur5r.net Git - cc65/commitdiff
Remove the swapeax routine, it is obsolete
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 5 Oct 2002 17:59:42 +0000 (17:59 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 5 Oct 2002 17:59:42 +0000 (17:59 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1442 b7a2c559-68d2-44c3-8de9-860c34a00d81

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

index a3e62efb8bcca1cf78eb2e10b6c6bffcf7bd07e3..a7808a82bdc68e24ce6ea9cc11331687c59bb632 100644 (file)
@@ -116,7 +116,6 @@ OBJS =      add.o           \
                lsub.o          \
                lsubeq.o        \
                lsubeqsp.o      \
-               lswap.o         \
                lt.o            \
                ltest.o         \
                ludiv.o         \
@@ -193,7 +192,7 @@ OBJS =      add.o           \
                ult.o           \
                umod.o          \
                xor.o           \
-        zeropage.o      
+        zeropage.o
 
 all:           $(OBJS)
 
diff --git a/libsrc/runtime/lswap.s b/libsrc/runtime/lswap.s
deleted file mode 100644 (file)
index 0e03cf2..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-;
-; Ullrich von Bassewitz, 29.12.1999
-;
-; CC65 runtime: Exchange lo and hi part of eax
-;
-
-       .export         swapeax
-       .importzp       sreg
-
-swapeax:
-       ldy     sreg
-               sta     sreg
-       lda     sreg+1
-       stx     sreg+1
-       tax
-       tya
-       rts
-