mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
7 lines
125 B
Plaintext
7 lines
125 B
Plaintext
|
uint Helper_MultiplyHighU32(uint x, uint y)
|
||
|
{
|
||
|
uint msb;
|
||
|
uint lsb;
|
||
|
umulExtended(x, y, msb, lsb);
|
||
|
return msb;
|
||
|
}
|