mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 07:30:46 -07:00
Initial work
This commit is contained in:
13
Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
Normal file
13
Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user