pcsx2/tools/GSDumpGUI/Library/GSDump/GSData/GIFUtil.cs

13 lines
256 B
C#

using System;
namespace GSDumpGUI
{
[Serializable]
public class GIFUtil
{
public static UInt64 GetBit(UInt64 value, int lower, int count)
{
return (value >> lower) & (ulong)((1ul << count) - 1);
}
}
}