]> git.sur5r.net Git - cc65/blob - libsrc/runtime/leaaxsp.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / leaaxsp.s
1 ;
2 ; Ullrich von Bassewitz, 2009-08-31
3 ;
4 ; CC65 runtime: Load effective address with offset in A/X relative to SP
5 ;
6
7         .export         leaaxsp, leaa0sp
8         .importzp       sp
9
10 leaa0sp:
11         ldx     #$00
12 leaaxsp:
13         clc
14         adc     sp
15         pha
16         txa
17         adc     sp+1
18         tax
19         pla
20         rts
21
22
23