Ryujinx-ChocolArm64/State/RegisterConsts.cs

8 lines
168 B
C#

namespace ChocolArm64.State
{
static class RegisterConsts
{
public const int RegsCount = 32;
public const int RegsMask = RegsCount - 1;
}
}