]> git.sur5r.net Git - cc65/blob - libsrc/runtime/aslax2.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / aslax2.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; CC65 runtime: Scale the primary register by 4
5 ;
6
7         .export         aslax2, shlax2
8         .importzp       tmp1
9
10 aslax2:
11 shlax2: stx     tmp1
12         asl     a
13         rol     tmp1
14         asl     a
15         rol     tmp1
16         ldx     tmp1
17         rts
18