1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00
cc65/testcode/lib/getsp.s
cpg 22a7951bde added file I/O test program
git-svn-id: svn://svn.cc65.org/cc65/trunk@56 b7a2c559-68d2-44c3-8de9-860c34a00d81
2000-06-11 23:36:16 +00:00

13 lines
80 B
ArmAsm

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