1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-22 01:16:54 +00:00
Files
cc65/samples/getsp.s
T
2025-06-23 17:09:06 +02:00

13 lines
137 B
ArmAsm

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