forked from MeloNX/MeloNX
14 lines
431 B
C#
14 lines
431 B
C#
using ARMeilleure.Memory;
|
|
using Ryujinx.Memory;
|
|
|
|
namespace Ryujinx.Cpu.Nce
|
|
{
|
|
class NceMemoryAllocator : IJitMemoryAllocator
|
|
{
|
|
public IJitMemoryBlock Allocate(ulong size) => new NceMemoryBlock(size, MemoryAllocationFlags.None);
|
|
public IJitMemoryBlock Reserve(ulong size) => new NceMemoryBlock(size, MemoryAllocationFlags.Reserve);
|
|
|
|
public ulong GetPageSize() => MemoryBlock.GetPageSize();
|
|
}
|
|
}
|