mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 03:50:17 +00:00
27 lines
334 B
C
27 lines
334 B
C
/* Public domain. */
|
|
extern int __mulhi3 (int, int);
|
|
|
|
int
|
|
__mulhi3 (int x, int y)
|
|
{
|
|
char bit;
|
|
int neg = 0;
|
|
int rv = 0;
|
|
|
|
if (y < 0)
|
|
{
|
|
y = - y;
|
|
neg = 1;
|
|
}
|
|
|
|
for (bit = 0; y && bit < sizeof (y) * 8; bit ++)
|
|
{
|
|
if (y & 1)
|
|
rv += x;
|
|
x <<= 1;
|
|
y >>= 1;
|
|
}
|
|
|
|
return neg ? - rv : rv;
|
|
}
|