mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-06 06:52:55 -06:00
12 lines
234 B
C#
12 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);
|
|
}
|
|
}
|