]> git.sur5r.net Git - cc65/blob - shrax1.s
f7b6b725694ba14c39a6efab1e136e743f94b4e7
[cc65] / shrax1.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; CC65 runtime: Scale the primary register
5 ;
6
7         .export         shrax1
8         .importzp       tmp1
9
10 shrax1: stx     tmp1
11         lsr     tmp1
12         ror     a
13         ldx     tmp1
14         rts
15