From db8cac9501cbba761ef6fd5405a95dbc3ec5e343 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 6 Jul 2012 19:56:42 +0000 Subject: [PATCH] Comment and tab fix. No code changes. git-svn-id: svn://svn.cc65.org/cc65/trunk@5760 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/runtime/shl.s | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 -- 2.39.5