]> git.sur5r.net Git - cc65/commitdiff
Rewrite code for arithmetic right shift.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 11 Jul 2012 20:57:02 +0000 (20:57 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 11 Jul 2012 20:57:02 +0000 (20:57 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5779 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/asr.s

index 8a3565e7d279971e235c4d87ddd3da7b40badc58..48b5075b5784ff47da60bd25cd226f199deab074 100644 (file)
 ;
 
 
-       .export         tosasrax
+       .export         tosasrax, asraxy
        .import         popax
        .importzp       tmp1
 
 tosasrax:
-        and     #$0F            ; Bring the shift count into a valid range
-        sta     tmp1            ; Save it
-
+        sta     tmp1            ; Save shift count
         jsr     popax           ; Get the left hand operand
-
         ldy     tmp1            ; Get shift count
-        beq     L9              ; Bail out if shift count zero
-
-        cpy     #8              ; Shift count 8 or greater?
-        bcc     L1              ; Jump if not
 
-; Shift count is greater 8. The carry is set when we enter here.
+; Run into asraxy
 
+asraxy:
+        pha
         tya
-        sbc     #8
-        tay                     ; Adjust shift count
-        txa
-        ldx     #$00            ; Shift by 8 bits
-        cmp     #$00            ; Test sign bit
-        bpl     L1
-        dex                     ; Make X the correct sign extended value
-
-; Save the high byte so we can shift it
-
-L1:     stx     tmp1            ; Save high byte
-        jmp     L3
-
-; Do the actual shift
-
-L2:            cpx     #$80            ; Copy bit 15 into the carry
+        and     #$0F
+        beq     L2              ; Nothing to shift
+        sec
+        sbc     #8              ; Shift count 8 or greater?
+        beq     L3              ; Jump if exactly 8
+        bcc     L6              ; Jump if less than 8
+
+; Shift count is greater than 8.
+
+        tay                     ; Shift count into Y
+        pla                     ; Discard low byte
+        txa                     ; Get high byte
+
+L1:     cmp     #$80            ; Sign bit into carry
+        ror     a               ; Carry into A
+        dey
+        bne     L1
+        beq     L4              ; Sign extend and return
+
+; Shift count is zero
+
+L2:     pla
+        rts
+
+; Shift count is exactly 8
+
+L3:     pla                     ; Drop low byte from stack ...
+        txa                     ; Move high byte to low
+L4:     ldx     #$00            ; Clear high byte
+        cmp     #$80            ; Check sign bit
+        bcc     L5
+        dex
+L5:     rts
+
+; Shift count is less than 8
+
+L6:     adc     #8              ; Correct counter
+        tay                     ; Shift count into Y
+        pla                     ; Restore low byte
+        stx     tmp1            ; Save high byte of lhs
+L7:     cpx     #$80            ; Sign bit into carry
         ror     tmp1
         ror     a
-L3:     dey
-               bpl     L2
+        dey
+               bne     L7
 
 ; Done with shift
 
-        ldx            tmp1
-L9:     rts
-
-
+        ldx    tmp1
+        rts