Ryujinx/ChocolArm64/Memory/AMemoryMapInfo.cs

21 lines
625 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
namespace ChocolArm64.Memory
{
public struct AMemoryMapInfo
{
public long Position { get; private set; }
public long Size { get; private set; }
public int Type { get; private set; }
2018-02-10 01:13:18 +01:00
public int Attr { get; private set; }
2018-02-05 00:08:20 +01:00
public AMemoryPerm Perm { get; private set; }
2018-02-10 01:13:18 +01:00
public AMemoryMapInfo(long Position, long Size, int Type, int Attr, AMemoryPerm Perm)
2018-02-05 00:08:20 +01:00
{
this.Position = Position;
this.Size = Size;
this.Type = Type;
2018-02-10 01:13:18 +01:00
this.Attr = Attr;
2018-02-05 00:08:20 +01:00
this.Perm = Perm;
}
}
}