mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-03 22:43:07 +00:00
11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
|
|
namespace Ryujinx.Memory
|
|
{
|
|
public interface IWritableBlock
|
|
{
|
|
void Write(ulong va, ReadOnlySpan<byte> data);
|
|
|
|
void WriteUntracked(ulong va, ReadOnlySpan<byte> data) => Write(va, data);
|
|
}
|
|
}
|