This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
enum MemoryFillValue : byte
|
|
{
|
|
Zero = 0,
|
|
Stack = 0x58,
|
|
Ipc = 0x59,
|
|
Heap = 0x5A,
|
|
}
|
|
}
|