diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/MemoryManagerMode.cs')
-rw-r--r-- | Ryujinx.Common/Configuration/MemoryManagerMode.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/MemoryManagerMode.cs b/Ryujinx.Common/Configuration/MemoryManagerMode.cs new file mode 100644 index 00000000..ad6c2a34 --- /dev/null +++ b/Ryujinx.Common/Configuration/MemoryManagerMode.cs @@ -0,0 +1,9 @@ +namespace Ryujinx.Common.Configuration +{ + public enum MemoryManagerMode : byte + { + SoftwarePageTable, + HostMapped, + HostMappedUnsafe + } +} |