mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-22 22:57:09 +02:00
Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
13
src/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
Normal file
13
src/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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue