2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; 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 tosdiveax
|
2002-09-28 19:55:19 +00:00
|
|
|
.import poplsargs, udiv32, negeax
|
|
|
|
.importzp ptr1, tmp1, tmp2
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
tosdiveax:
|
|
|
|
jsr poplsargs ; Get arguments from stack, adjust sign
|
2002-09-28 19:55:19 +00:00
|
|
|
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
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|