aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs
blob: 6da0c4056a30d8a460994fe394bdf6d108878e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Ryujinx.HLE.HOS.Kernel.Common;

namespace Ryujinx.HLE.HOS.Kernel.Memory
{
    class KTransferMemory : KAutoObject
    {
        public ulong Address { get; private set; }
        public ulong Size    { get; private set; }

        public KTransferMemory(KernelContext context, ulong address, ulong size) : base(context)
        {
            Address = address;
            Size    = size;
        }
    }
}