From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- src/Ryujinx.Tests/Memory/MockMemoryManager.cs | 53 +++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/Ryujinx.Tests/Memory/MockMemoryManager.cs (limited to 'src/Ryujinx.Tests/Memory/MockMemoryManager.cs') diff --git a/src/Ryujinx.Tests/Memory/MockMemoryManager.cs b/src/Ryujinx.Tests/Memory/MockMemoryManager.cs new file mode 100644 index 00000000..eeecf419 --- /dev/null +++ b/src/Ryujinx.Tests/Memory/MockMemoryManager.cs @@ -0,0 +1,53 @@ +using ARMeilleure.Memory; +using System; + +namespace Ryujinx.Tests.Memory +{ + internal class MockMemoryManager : IMemoryManager + { + public int AddressSpaceBits => throw new NotImplementedException(); + + public IntPtr PageTablePointer => throw new NotImplementedException(); + + public MemoryManagerType Type => MemoryManagerType.HostMappedUnsafe; + +#pragma warning disable CS0067 + public event Action UnmapEvent; +#pragma warning restore CS0067 + + public ref T GetRef(ulong va) where T : unmanaged + { + throw new NotImplementedException(); + } + + public ReadOnlySpan GetSpan(ulong va, int size, bool tracked = false) + { + throw new NotImplementedException(); + } + + public bool IsMapped(ulong va) + { + throw new NotImplementedException(); + } + + public T Read(ulong va) where T : unmanaged + { + throw new NotImplementedException(); + } + + public T ReadTracked(ulong va) where T : unmanaged + { + throw new NotImplementedException(); + } + + public void SignalMemoryTracking(ulong va, ulong size, bool write, bool precise = false, int? exemptId = null) + { + throw new NotImplementedException(); + } + + public void Write(ulong va, T value) where T : unmanaged + { + throw new NotImplementedException(); + } + } +} -- cgit v1.2.3