Initial work
This commit is contained in:
parent
f617fb542a
commit
1876b346fe
518 changed files with 15170 additions and 12486 deletions
15
Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs
Normal file
15
Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue