Home  /  Autodocs  /  utility.library

NAME

SDivMod64
signed 64 by 32 division with 32 bit result (V47)

SYNOPSIS

result = SDivMod64(dividendhi,dividendlo,divisor);
D0:D1 D1 D0 D2

LONG SDivMod64(LONG,ULONG,LONG);

FUNCTION

Returns the quotient of the unsigned 64 bit division of the divisor in registers D1 and D0, with the upper 32 bits in D1, by the divisor in D2 in D0. The remainder is returned in D1.

INPUTS

dividendhi
upper 32 bits of the dividend

dividendlo
lower 32 bits of the dividend

divisor
32 bit divisor

RESULT

result
the 32 bit quotient in D0 and the remainder in D1 on overflow, registers are unchanged and the V processor bit is set

NOTES

Unlike other Amiga library function calls, the utility.library 32 bit math routines do NOT require A6 to be loaded with a pointer to the library base. A6 can contain anything the application wishes. This is in order to avoid overhead in calling them.

In addition, the utility.library math routines preserve all address registers including A0 and A1

SEE ALSO

SDivMod32(), SMult32(), UDivMod32(), SMult64() UMult64(), UDivMod64()