mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-10 16:41:08 +00:00
11 lines
196 B
C#
11 lines
196 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Common
|
|
{
|
|
enum MemorySize : byte
|
|
{
|
|
MemorySize4GiB = 0,
|
|
MemorySize6GiB = 1,
|
|
MemorySize8GiB = 2,
|
|
MemorySize12GiB = 3,
|
|
}
|
|
}
|