AMemoryMapInfo.cs 625 B

123456789101112131415161718192021
  1. namespace ChocolArm64.Memory
  2. {
  3. public struct AMemoryMapInfo
  4. {
  5. public long Position { get; private set; }
  6. public long Size { get; private set; }
  7. public int Type { get; private set; }
  8. public int Attr { get; private set; }
  9. public AMemoryPerm Perm { get; private set; }
  10. public AMemoryMapInfo(long Position, long Size, int Type, int Attr, AMemoryPerm Perm)
  11. {
  12. this.Position = Position;
  13. this.Size = Size;
  14. this.Type = Type;
  15. this.Attr = Attr;
  16. this.Perm = Perm;
  17. }
  18. }
  19. }