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