1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-24 08:07:57 -05:00

15 lines
292 B
C#
Raw Normal View History

using System;
namespace ARMeilleure.Memory
{
public interface IJitMemoryBlock : IDisposable
{
IntPtr Pointer { get; }
bool Commit(ulong offset, ulong size);
void MapAsRx(ulong offset, ulong size);
void MapAsRwx(ulong offset, ulong size);
}
}