/ src / Ryujinx.HLE / HOS / Kernel / Memory / MemoryFillValue.cs
MemoryFillValue.cs
 1  namespace Ryujinx.HLE.HOS.Kernel.Memory
 2  {
 3      enum MemoryFillValue : byte
 4      {
 5          Zero = 0,
 6          Stack = 0x58,
 7          Ipc = 0x59,
 8          Heap = 0x5A,
 9      }
10  }