1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/runtime/incsp4.s
cuz 1cdb90926a Replaced the incsp functions by faster (but slightly larger) versions
git-svn-id: svn://svn.cc65.org/cc65/trunk@2146 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-05-04 22:34:16 +00:00

24 lines
303 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-05-04
;
; CC65 runtime: Increment the stackpointer by 4
;
.export incsp4
.importzp sp
.proc incsp4
lda sp
clc
adc #4
sta sp
bcs @L1
rts
@L1: inc sp+1
rts
.endproc