20 lines
438 B
C#
20 lines
438 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IMemoryManager
|
|
{
|
|
int AddressSpaceBits { get; }
|
|
|
|
IntPtr PageTablePointer { get; }
|
|
|
|
T Read<T>(ulong va) where T : unmanaged;
|
|
void Write<T>(ulong va, T value) where T : unmanaged;
|
|
|
|
ref T GetRef<T>(ulong va) where T : unmanaged;
|
|
|
|
bool IsMapped(ulong va);
|
|
|
|
void MarkRegionAsModified(ulong va, ulong size);
|
|
}
|
|
} |