mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 05:18:53 +00:00
13 lines
430 B
C#
13 lines
430 B
C#
|
namespace ARMeilleure.State
|
||
|
{
|
||
|
static class RegisterConsts
|
||
|
{
|
||
|
public const int IntRegsCount = 32;
|
||
|
public const int VecRegsCount = 32;
|
||
|
public const int FlagsCount = 32;
|
||
|
public const int IntAndVecRegsCount = IntRegsCount + VecRegsCount;
|
||
|
public const int TotalCount = IntRegsCount + VecRegsCount + FlagsCount;
|
||
|
|
||
|
public const int ZeroIndex = 31;
|
||
|
}
|
||
|
}
|