mirror of
https://github.com/cc65/cc65.git
synced 2025-02-10 09:31:08 +00:00
27 lines
358 B
ArmAsm
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
|
|
|
|
|
|
|
|
|
|
|