aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/IWritableBlock.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Memory/IWritableBlock.cs')
-rw-r--r--Ryujinx.Memory/IWritableBlock.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Memory/IWritableBlock.cs b/Ryujinx.Memory/IWritableBlock.cs
new file mode 100644
index 00000000..c95b754d
--- /dev/null
+++ b/Ryujinx.Memory/IWritableBlock.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace Ryujinx.Memory
+{
+ public interface IWritableBlock
+ {
+ void Write(ulong va, ReadOnlySpan<byte> data);
+ }
+}