]> git.sur5r.net Git - cc65/commitdiff
Comment and tab fix. No code changes.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 6 Jul 2012 19:56:42 +0000 (19:56 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 6 Jul 2012 19:56:42 +0000 (19:56 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5760 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/shl.s

index 31750047b7dd1a330039981dcb8341517b57ee02..c1a4b6ef82d5fa57ead7cd2c4171f3c3c9c10cc8 100644 (file)
 ;
 
 
-       .export         tosaslax, tosshlax, aslaxy, shlaxy
-       .import         popax
-       .importzp       tmp1
+        .export          tosaslax, tosshlax, aslaxy, shlaxy
+        .import          popax
+        .importzp        tmp1
 
         .macpack        cpu
 
 tosshlax:
 tosaslax:
-        sta     tmp1            ; Save shift count it
+        sta     tmp1            ; Save shift count
         jsr     popax           ; Get the left hand operand
         ldy     tmp1            ; Get shift count
 
@@ -71,13 +71,13 @@ L4:     adc     #8              ; Correct counter
         tay                     ; Shift count into Y
         pla                     ; Restore low byte
         stx     tmp1            ; Save high byte of lhs
-L5:            asl     a 
-       rol     tmp1
+L5:     asl     a
+        rol     tmp1
         dey
-               bne     L5
+        bne     L5
 
 ; Done with shift
 
-        ldx    tmp1
+        ldx     tmp1
 L9:     rts