From: uz Date: Fri, 6 Jul 2012 19:56:42 +0000 (+0000) Subject: Comment and tab fix. No code changes. X-Git-Tag: V2.14~311 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=db8cac9501cbba761ef6fd5405a95dbc3ec5e343;p=cc65 Comment and tab fix. No code changes. git-svn-id: svn://svn.cc65.org/cc65/trunk@5760 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/runtime/shl.s b/libsrc/runtime/shl.s index 31750047b..c1a4b6ef8 100644 --- a/libsrc/runtime/shl.s +++ b/libsrc/runtime/shl.s @@ -11,15 +11,15 @@ ; - .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