]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/lshl.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / lshl.s
index 3c4e7080b91170b9a1177a8a0bf3d720a0e03885..78c065eb26bd694baca1db1da1698dced9f42ee7 100644 (file)
@@ -11,9 +11,9 @@
 ;
 
 
-       .export         tosasleax, tosshleax
-       .import         popeax
-       .importzp       sreg, tmp1
+        .export         tosasleax, tosshleax
+        .import         popeax
+        .importzp       sreg, tmp1
 
 
 tosshleax:
@@ -29,12 +29,12 @@ tosasleax:
 
 ; Do the actual shift. Faster solutions are possible but need a lot more code.
 
-L2:     asl    a
-       rol     tmp1
-       rol     sreg
-       rol     sreg+1
+L2:     asl     a
+        rol     tmp1
+        rol     sreg
+        rol     sreg+1
         dey
-               bne     L2
+        bne     L2
 
 ; Shift done