mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
1cbca5eecb
* Implement code memory syscalls * Remove owner process validation * Add 32-bit code memory syscalls * Remove unused field
10 lines
171 B
C#
10 lines
171 B
C#
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
{
|
|
enum CodeMemoryOperation : uint
|
|
{
|
|
Map,
|
|
MapToOwner,
|
|
Unmap,
|
|
UnmapFromOwner
|
|
};
|
|
} |