mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-06 15:28:40 +00:00
![gdkchan](/assets/img/avatar_default.png)
* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
12 lines
198 B
C#
12 lines
198 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
enum MemoryOperation
|
|
{
|
|
MapPa,
|
|
MapVa,
|
|
Allocate,
|
|
Unmap,
|
|
ChangePermRw,
|
|
ChangePermsAndAttributes
|
|
}
|
|
} |