mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-01 06:23:02 +00:00
9 lines
162 B
C#
9 lines
162 B
C#
|
namespace Ryujinx.HLE.HOS.Kernel.Common
|
||
|
{
|
||
|
enum MemorySize : byte
|
||
|
{
|
||
|
MemorySize4GB = 0,
|
||
|
MemorySize6GB = 1,
|
||
|
MemorySize8GB = 2
|
||
|
}
|
||
|
}
|