1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 02:17:07 +00:00
Files
cc65/samples/getsp.s
T
2025-06-04 06:37:59 +00:00

13 lines
137 B
ArmAsm

.export _getsp
.importzp c_sp
.proc _getsp
ldx c_sp+1
lda c_sp
rts
.endproc