aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/MemoryConstants.cs
blob: fc6f87e0360283ed9d3f411084ca07763ccaf6f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Memory
{
    static class MemoryConstants
    {
        public const int PageBits = 12;
        public const int PageSize = 1 << PageBits;
        public const int PageMask = PageSize - 1;
    }
}