mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-23 09:40:52 -05:00
* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
14 lines
321 B
C#
14 lines
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;
|
|
}
|
|
}
|
|
} |