]> git.sur5r.net Git - cc65/blob - libsrc/runtime/div.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / div.s
1 ;
2 ; Ullrich von Bassewitz, 07.08.1998
3 ;
4 ; CC65 runtime: division for signed ints
5 ;
6
7 ; When negating values, we will ignore the possibility here, that one of the
8 ; values if $8000, in which case the negate will fail.
9
10         .export         tosdiva0, tosdivax
11         .import         popsargs, udiv16, negax
12         .importzp       sreg, tmp1, tmp2
13
14 tosdiva0:
15         ldx     #0
16 tosdivax:
17         jsr     popsargs        ; Get arguments from stack, adjust sign
18         jsr     udiv16          ; Do the division
19         ldx     sreg+1          ; Load high byte of result
20
21 ; Adjust the sign of the result. tmp1 contains the high byte of the left
22 ; operand, tmp2 contains the high byte of the right operand.
23
24         lda     tmp1
25         eor     tmp2
26         bpl     Pos             ; Jump if sign of result positive
27
28 ; Result is negative
29
30         lda     sreg            ; Load low byte of result
31         jmp     negax           ; Adjust the sign
32
33 ; Result is positive
34
35 Pos:    lda     sreg
36         rts
37