mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-01 23:17:17 +00:00
15 lines
329 B
C#
15 lines
329 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Memory
|
|
{
|
|
public interface IPhysicalMemory
|
|
{
|
|
int GetPageSize();
|
|
|
|
Span<byte> Read(ulong address, ulong size);
|
|
|
|
void Write(ulong address, Span<byte> data);
|
|
|
|
(ulong, ulong)[] GetModifiedRanges(ulong address, ulong size, ResourceName name);
|
|
}
|
|
} |