]> git.sur5r.net Git - cc65/blob - testcode/lib/getsp.s
Removed (pretty inconsistently used) tab chars from source code base.
[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