mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-01 06:57:18 +00:00
11 lines
172 B
C#
11 lines
172 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
enum MemoryFillValue : byte
|
|
{
|
|
Zero = 0,
|
|
Stack = 0x58,
|
|
Ipc = 0x59,
|
|
Heap = 0x5A,
|
|
}
|
|
}
|