david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added __umoddi3

This commit is contained in:
Michael Brown 2007-01-31 22:26:14 +00:00
parent 6c2f0e1bf4
commit c789e8640b
1 changed files with 13 additions and 0 deletions

View File

@ -317,3 +317,16 @@ UDItype __udivdi3 ( UDItype x, UDItype d ) {
UDItype r;
return __udivmoddi4 ( x, d, &r );
}
/**
* 64-bit modulus
*
* @v x Dividend
* @v d Divisor
* @ret q Quotient
*/
UDItype __umoddi3 ( UDItype x, UDItype d ) {
UDItype r;
__udivmoddi4 ( x, d, &r );
return r;
}