1
0
mirror of https://github.com/cc65/cc65.git synced 2026-03-11 08:41:58 +00:00
Files
cc65/libsrc/runtime/incsp1.s
2025-06-04 06:37:59 +00:00

23 lines
259 B
ArmAsm

;
; Ullrich von Bassewitz, 25.10.2000
;
; CC65 runtime: Increment the stackpointer by 1
;
.export incsp1
.importzp c_sp
.proc incsp1
inc c_sp
bne @L1
inc c_sp+1
@L1: rts
.endproc