]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/asrax3.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / asrax3.s
index ee3e9f0911bac6a233de8950979f9cec96f7667f..52a2f375c15276fcffaa4c67daeab19341d13107 100644 (file)
@@ -5,19 +5,19 @@
 ; CC65 runtime: Scale the primary register by 8
 ;
 
-       .export         asrax3
-       .importzp       tmp1
+        .export         asrax3
+        .importzp       tmp1
 
-asrax3:        stx     tmp1
-       cpx     #$80            ; Put bit 7 into carry
-       ror     tmp1
-       ror     a
-       cpx     #$80
-       ror     tmp1
-       ror     a
-       cpx     #$80
-       ror     tmp1
-       ror     a
-       ldx     tmp1
-       rts
+asrax3: stx     tmp1
+        cpx     #$80            ; Put bit 7 into carry
+        ror     tmp1
+        ror     a
+        cpx     #$80
+        ror     tmp1
+        ror     a
+        cpx     #$80
+        ror     tmp1
+        ror     a
+        ldx     tmp1
+        rts