using System; namespace Ryujinx.Graphics.Gpu.Memory { public interface IPhysicalMemory { int GetPageSize(); Span Read(ulong address, ulong size); void Write(ulong address, Span data); (ulong, ulong)[] GetModifiedRanges(ulong address, ulong size, ResourceName name); } }