]> git.sur5r.net Git - cc65/blob - libsrc/runtime/ldaui.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / ldaui.s
1 ;
2 ; Ullrich von Bassewitz, 31.08.1998
3 ;
4 ; CC65 runtime: Load a unsigned indirect from address in ax
5 ;
6
7         .export         ldauidx
8         .importzp       ptr1
9
10 .proc   ldauidx
11         sta     ptr1
12         stx     ptr1+1
13         ldx     #0
14         lda     (ptr1),y
15         rts
16 .endproc