2018-08-17 00:47:36 +01:00
|
|
|
|
namespace Ryujinx.HLE.Utilities
|
2018-03-12 01:05:39 +00:00
|
|
|
|
{
|
|
|
|
|
static class EndianSwap
|
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public static ushort Swap16(ushort Value) => (ushort)(((Value >> 8) & 0xff) | (Value << 8));
|
2018-08-17 00:47:36 +01:00
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public static int Swap32(int Value)
|
2018-06-18 03:28:11 +01:00
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
|
uint UintVal = (uint)Value;
|
2018-06-18 03:28:11 +01:00
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
|
return (int)(((UintVal >> 24) & 0x000000ff) |
|
|
|
|
|
((UintVal >> 8) & 0x0000ff00) |
|
|
|
|
|
((UintVal << 8) & 0x00ff0000) |
|
|
|
|
|
((UintVal << 24) & 0xff000000));
|
2018-06-18 03:28:11 +01:00
|
|
|
|
}
|
2018-03-12 01:05:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|