mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 03:26:39 +00:00
8 lines
168 B
C#
8 lines
168 B
C#
|
namespace ChocolArm64.State
|
||
|
{
|
||
|
static class RegisterConsts
|
||
|
{
|
||
|
public const int RegsCount = 32;
|
||
|
public const int RegsMask = RegsCount - 1;
|
||
|
}
|
||
|
}
|