mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-23 23:17:10 +02:00
11 lines
231 B
C#
11 lines
231 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);
|
|
}
|
|
}
|