]> git.sur5r.net Git - cc65/blob - aslax1.s
eddb5272a47fea7df280077d507b9d4f10315c47
[cc65] / aslax1.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; CC65 runtime: Scale the primary register
5 ;
6
7         .export         aslax1, shlax1
8         .importzp       tmp1
9                             
10 aslax1:
11 shlax1: stx     tmp1
12         asl     A
13         rol     tmp1
14         ldx     tmp1
15         rts
16
17