Ryujinx/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockAllocator.cs

19 lines
428 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel.Memory
{
class KMemoryBlockAllocator
{
private ulong _capacityElements;
public int Count { get; set; }
public KMemoryBlockAllocator(ulong capacityElements)
{
_capacityElements = capacityElements;
}
public bool CanAllocate(int count)
{
return (ulong)(Count + count) <= _capacityElements;
}
}
}