mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 06:36:24 +02:00
13 lines
313 B
C#
13 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,
|
|
}
|
|
}
|