diff options
Diffstat (limited to 'Ryujinx.Memory/AddressSpaceManager.cs')
-rw-r--r-- | Ryujinx.Memory/AddressSpaceManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Memory/AddressSpaceManager.cs b/Ryujinx.Memory/AddressSpaceManager.cs index 45f3225e..ffe880bf 100644 --- a/Ryujinx.Memory/AddressSpaceManager.cs +++ b/Ryujinx.Memory/AddressSpaceManager.cs @@ -137,6 +137,14 @@ namespace Ryujinx.Memory } /// <inheritdoc/> + public bool WriteWithRedundancyCheck(ulong va, ReadOnlySpan<byte> data) + { + Write(va, data); + + return true; + } + + /// <inheritdoc/> public ReadOnlySpan<byte> GetSpan(ulong va, int size, bool tracked = false) { if (size == 0) |