mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-29 04:59:15 +01:00
7 lines
120 B
Text
7 lines
120 B
Text
|
int Helper_MultiplyHighS32(int x, int y)
|
||
|
{
|
||
|
int msb;
|
||
|
int lsb;
|
||
|
imulExtended(x, y, msb, lsb);
|
||
|
return msb;
|
||
|
}
|