Routines no longer used

git-svn-id: svn://svn.cc65.org/cc65/trunk@47 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-06-10 16:06:05 +00:00
parent 6481395a94
commit 61ca3a4abe
3 changed files with 1 additions and 34 deletions

View File

@ -20,7 +20,7 @@ OBJS = runtime.o mul.o div.o push.o inc.o dec.o shl.o shr.o add.o\
aslax2.o asrax2.o shrax2.o aslax3.o asrax3.o shrax3.o\
enter.o leave.o leaysp.o popsreg.o ldai.o ldaxi.o ldauisp.o\
ldaui.o pushw.o pushb.o staxsp.o ldaxsp.o addeqsp.o\
ldasp.o ldausp.o bpushbsp.o pushwsp.o pushbsp.o
bpushbsp.o pushwsp.o pushbsp.o
LOBJS = lruntime.o lconvert.o ladd.o lsub.o lrsub.o leq.o lne.o\
lneg.o lbneg.o lcompl.o lpush.o land.o lor.o lxor.o ldeaxi.o\

View File

@ -1,17 +0,0 @@
;
; Ullrich von Bassewitz, 31.08.1998
;
; CC65 runtime: Load a from offset in stack
;
.export ldasp, ldaysp
.importzp sp
ldasp: ldy #0
ldaysp: ldx #0
lda (sp),y
bpl L9 ; Jump if positive
dex
L9: rts

View File

@ -1,16 +0,0 @@
;
; Ullrich von Bassewitz, 31.08.1998
;
; CC65 runtime: Load a unsigned from offset in stack
;
.export ldausp, ldauysp
.importzp sp
ldausp: ldy #0
ldauysp:
ldx #0
lda (sp),y
rts