mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-26 16:32:55 +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);
|
|
}
|
|
}
|