mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-24 09:46:27 -05: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