]> git.sur5r.net Git - cc65/blob - testcode/lib/getsp.s
info about c1541 in docs, lowered highest available address to $6000 due to
[cc65] / testcode / lib / getsp.s
1
2         .export _getsp
3         .importzp       sp
4
5 .proc   _getsp
6
7         ldx     sp+1
8         lda     sp
9         rts
10
11 .endproc
12