Ryujinx/Ryujinx.HLE/HOS/Kernel/KMemoryBlockAllocator.cs
2018-12-01 14:03:56 -06:00

19 lines
No EOL
431 B
C#

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;
}
}
}