Ryujinx/src/ARMeilleure/Memory/IJitMemoryAllocator.cs
2023-04-27 23:51:14 +02:00

10 lines
210 B
C#

namespace ARMeilleure.Memory
{
public interface IJitMemoryAllocator
{
IJitMemoryBlock Allocate(ulong size);
IJitMemoryBlock Reserve(ulong size);
ulong GetPageSize();
}
}