mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:38:37 +00:00
13 lines
406 B
C#
13 lines
406 B
C#
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
static class RegisterConsts
|
|
{
|
|
public const int GprsCount = 255;
|
|
public const int PredsCount = 7;
|
|
public const int FlagsCount = 4;
|
|
public const int TotalCount = GprsCount + PredsCount + FlagsCount;
|
|
|
|
public const int RegisterZeroIndex = GprsCount;
|
|
public const int PredicateTrueIndex = PredsCount;
|
|
}
|
|
} |