HTransferMem.cs 567 B

123456789101112131415161718192021
  1. using ChocolArm64.Memory;
  2. namespace Ryujinx.HLE.OsHle.Handles
  3. {
  4. class HTransferMem
  5. {
  6. public AMemory Memory { get; private set; }
  7. public AMemoryPerm Perm { get; private set; }
  8. public long Position { get; private set; }
  9. public long Size { get; private set; }
  10. public HTransferMem(AMemory Memory, AMemoryPerm Perm, long Position, long Size)
  11. {
  12. this.Memory = Memory;
  13. this.Perm = Perm;
  14. this.Position = Position;
  15. this.Size = Size;
  16. }
  17. }
  18. }