aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/KMemoryBlockAllocator.cs
blob: 08512e129c144b1dd8d472f1cf516b2ee38cd5e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Ryujinx.HLE.HOS.Kernel
{
    class KMemoryBlockAllocator
    {
        private ulong CapacityElements;

        public int Count { get; set; }

        public KMemoryBlockAllocator(ulong CapacityElements)
        {
            this.CapacityElements = CapacityElements;
        }

        public bool CanAllocate(int Count)
        {
            return (ulong)(this.Count + Count) <= CapacityElements;
        }
    }
}