mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00

* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
14 lines
No EOL
321 B
C#
14 lines
No EOL
321 B
C#
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
class KTransferMemory
|
|
{
|
|
public ulong Address { get; private set; }
|
|
public ulong Size { get; private set; }
|
|
|
|
public KTransferMemory(ulong address, ulong size)
|
|
{
|
|
Address = address;
|
|
Size = size;
|
|
}
|
|
}
|
|
} |