mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-03-31 00:58:42 +00:00
14 lines
No EOL
291 B
C#
14 lines
No EOL
291 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryBlock : IDisposable
|
|
{
|
|
IntPtr Pointer { get; }
|
|
|
|
void Commit(ulong offset, ulong size);
|
|
|
|
void MapAsRx(ulong offset, ulong size);
|
|
void MapAsRwx(ulong offset, ulong size);
|
|
}
|
|
} |