aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/State/RegisterConsts.cs
blob: a85117bb2bc0078ea14c3091ecf8134917db1120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace ARMeilleure.State
{
    static class RegisterConsts
    {
        public const int IntRegsCount       = 32;
        public const int VecRegsCount       = 32;
        public const int FlagsCount         = 32;
        public const int IntAndVecRegsCount = IntRegsCount + VecRegsCount;
        public const int TotalCount         = IntRegsCount + VecRegsCount + FlagsCount;

        public const int ZeroIndex = 31;
    }
}