]> git.sur5r.net Git - cc65/blob - testcode/lib/getsp.s
Changed the PC-Engine's configuration file, so that the command line can build 8K...
[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