mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:38:32 +00:00
7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
|
int Helper_MultiplyHighS32(int x, int y)
|
||
|
{
|
||
|
int msb;
|
||
|
int lsb;
|
||
|
imulExtended(x, y, msb, lsb);
|
||
|
return msb;
|
||
|
}
|