mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-12 19:37:06 +00:00
14 lines
No EOL
325 B
C#
14 lines
No EOL
325 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
class KTransferMemory
|
|
{
|
|
public ulong Address { get; private set; }
|
|
public ulong Size { get; private set; }
|
|
|
|
public KTransferMemory(ulong Address, ulong Size)
|
|
{
|
|
this.Address = Address;
|
|
this.Size = Size;
|
|
}
|
|
}
|
|
} |