mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-18 04:02:55 +00:00
14 lines
313 B
C#
14 lines
313 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<MemoryManagerMode>))]
|
|
public enum MemoryManagerMode : byte
|
|
{
|
|
SoftwarePageTable,
|
|
HostMapped,
|
|
HostMappedUnsafe,
|
|
}
|
|
}
|