1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-02 09:29:35 +00:00

21 lines
235 B
ArmAsm

;
; Ullrich von Bassewitz, 25.10.2000
;
; CC65 runtime: Increment the stackpointer by 3
;
.export incsp3
.import addysp
.proc incsp3
ldy #3
jmp addysp
.endproc