1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 19:29:37 +00:00

The pleasp.s module is no longer in use.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4094 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-08-31 12:56:54 +00:00
parent 7064aafab9
commit 1ea503a036
2 changed files with 0 additions and 24 deletions

View File

@ -162,7 +162,6 @@ OBJS = add.o \
ne.o \
neg.o \
or.o \
pleasp.o \
popa.o \
popsreg.o \
push1.o \

View File

@ -1,23 +0,0 @@
;
; Ullrich von Bassewitz, 21.08.1998
;
; CC65 runtime: Load effective address with offset in A relative to SP and push it
;
.export pleaasp
.import pushax
.importzp sp
.proc pleaasp
ldx sp+1 ; Get high byte
clc
adc sp
bcc @L9
inx
@L9: jmp pushax
.endproc