| 12345678910111213 |
- using Ryujinx.Common.Utilities;
- using System.Text.Json.Serialization;
- namespace Ryujinx.Common.Configuration
- {
- [JsonConverter(typeof(TypedStringEnumConverter<MemoryManagerMode>))]
- public enum MemoryManagerMode : byte
- {
- SoftwarePageTable,
- HostMapped,
- HostMappedUnsafe
- }
- }
|