1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-04-17 14:34:05 -05:00
2020-01-09 02:13:00 +01:00

12 lines
237 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
enum SystemRegister
{
ThreadIdX = 0x21,
ThreadIdY = 0x22,
ThreadIdZ = 0x23,
CtaIdX = 0x25,
CtaIdY = 0x26,
CtaIdZ = 0x27
}
}