mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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:
parent
e00f5ba5a0
commit
3f1eba36f3
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user