mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-29 20:06:25 +02:00
15 lines
No EOL
310 B
C#
15 lines
No EOL
310 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);
|
|
}
|
|
} |