65C02 code, minor optimization.

git-svn-id: svn://svn.cc65.org/cc65/trunk@486 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-11-28 13:27:42 +00:00
parent 6cbd32b49d
commit d09bf73a96

View file

@ -9,12 +9,18 @@
.proc popa
.ifpc02
lda (sp)
.else
ldy #0
lda (sp),y ; Read byte
inc sp
bne @L1
inc sp+1
@L1: rts
.endif
inc sp
beq @L1
rts
@L1: inc sp+1
rts
.endproc