aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Memory/MemoryConstants.cs
blob: 6cf9403bf6bb1d87e17a3c31a2010d29015721aa (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;
    }
}