1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00

Remove the swapeax routine, it is obsolete

git-svn-id: svn://svn.cc65.org/cc65/trunk@1442 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-10-05 17:59:42 +00:00
parent e00f5ba5a0
commit 3f1eba36f3
2 changed files with 1 additions and 20 deletions

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

View File

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