aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Handles/HTransferMem.cs
blob: 2969a2bae4a2db496172acfe1b6d1d3ea640d8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using ChocolArm64.Memory;

namespace Ryujinx.HLE.OsHle.Handles
{
    class HTransferMem
    {
        public AMemory     Memory { get; private set; }
        public AMemoryPerm Perm   { get; private set; }

        public long Position { get; private set; }
        public long Size     { get; private set; }

        public HTransferMem(AMemory Memory, AMemoryPerm Perm, long Position, long Size)
        {
            this.Memory   = Memory;
            this.Perm     = Perm;
            this.Position = Position;
            this.Size     = Size;
        }
    }
}