aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Cpu/JitMemoryAllocator.cs
blob: 26ccd732b140f4224f9a040dac10eb338ab2ed49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using ARMeilleure.Memory;
using Ryujinx.Memory;

namespace Ryujinx.Cpu
{
    class JitMemoryAllocator : IJitMemoryAllocator
    {
        public IJitMemoryBlock Allocate(ulong size) => new JitMemoryBlock(size, MemoryAllocationFlags.None);
        public IJitMemoryBlock Reserve(ulong size) => new JitMemoryBlock(size, MemoryAllocationFlags.Reserve);
    }
}