1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

Recode decsp8

git-svn-id: svn://svn.cc65.org/cc65/trunk@670 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-03-26 14:41:45 +00:00
parent b4da972eb7
commit 092c0a2620

View File

@ -5,16 +5,23 @@
;
.export decsp8
.import subysp
.importzp sp
.proc decsp8
ldy #8
jmp subysp
lda sp
sec
sbc #8
sta sp
bcc @L1
rts
@L1: dec sp+1
rts
.endproc