Ryujinx/Ryujinx.HLE/HOS/Kernel/Memory/MemoryOperation.cs

12 lines
198 B
C#

namespace Ryujinx.HLE.HOS.Kernel.Memory
{
enum MemoryOperation
{
MapPa,
MapVa,
Allocate,
Unmap,
ChangePermRw,
ChangePermsAndAttributes
}
}