1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 23:29:41 +00:00
cc65/libsrc/runtime/subysp.s
cuz 1e1199cb2b Rewrite the decsp and subysp functions now since they are used more often.
git-svn-id: svn://svn.cc65.org/cc65/trunk@665 b7a2c559-68d2-44c3-8de9-860c34a00d81
2001-03-24 16:15:01 +00:00

27 lines
358 B
ArmAsm

;
; Ullrich von Bassewitz, 25.10.2000
;
; CC65 runtime: Decrement the stackpointer by value in y
;
.export subysp
.importzp sp, tmp1
.proc subysp
sty tmp1 ; Save the value
lda sp ; Get lo byte
sec
sbc tmp1 ; Subtract y value
sta sp ; Put result back
bcs @L1
dec sp+1
@L1: rts ; Done
.endproc