Files
cc65/libsrc/runtime/incsp1.s
2025-06-04 02:06:40 +00:00

23 lines
256 B
ArmAsm

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