mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
10 lines
196 B
C#
10 lines
196 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Common
|
|
{
|
|
enum MemorySize : byte
|
|
{
|
|
MemorySize4GiB = 0,
|
|
MemorySize6GiB = 1,
|
|
MemorySize8GiB = 2,
|
|
MemorySize12GiB = 3,
|
|
}
|
|
}
|