mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-09 03:37:52 +02:00
12 lines
231 B
C#
12 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);
|
|
}
|
|
}
|