mirror of
https://github.com/cc65/cc65.git
synced 2024-11-14 05:05:45 +00:00
21 lines
185 B
ArmAsm
21 lines
185 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 25.10.2000
|
||
|
;
|
||
|
; CC65 runtime: Decrement the stackpointer by 3
|
||
|
;
|
||
|
|
||
|
.export decsp3
|
||
|
.import subysp
|
||
|
|
||
|
.proc decsp3
|
||
|
|
||
|
ldy #3
|
||
|
jmp subysp
|
||
|
|
||
|
.endproc
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|