File: ldiv.s

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (40 lines) | stat: -rw-r--r-- 1,045 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;
; Ullrich von Bassewitz, 17.08.1998
;
; CC65 runtime: division for signed long ints
;

; When negating values, we will ignore the possibility here, that one of the
; values if $80000000, in which case the negate will fail.

        .export         tosdiv0ax, tosdiveax
        .import         poplsargs, udiv32, negeax
        .importzp       sreg, ptr1, tmp1, tmp2

tosdiv0ax:
        ldy     #$00
        sty     sreg
        sty     sreg+1

tosdiveax:
        jsr     poplsargs       ; Get arguments from stack, adjust sign
        jsr     udiv32          ; Do the division, result is in (ptr1:sreg)
        ldx     ptr1+1          ; Load byte 1 of result

; Adjust the sign of the result

        lda     tmp1            ; Get sign of left operand
        eor     tmp2            ; Calculate sign of result
        bpl     Pos             ; Jump if result positive

; Result is negative

        lda     ptr1            ; Load byte 0
        jmp     negeax          ; Negate value

; Result is positive

Pos:    lda     ptr1
        rts