mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-05 14:32:57 -06: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
|
|
}
|
|
} |