aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/State/RegisterConsts.cs
blob: 8c34789cd8b31f47391c9c8aed2bdfe6102c7e6e (plain)
1
2
3
4
5
6
7
8
namespace ChocolArm64.State
{
    static class RegisterConsts
    {
        public const int RegsCount = 32;
        public const int RegsMask  = RegsCount - 1;
    }
}