HTransferMem.cs 665 B

1234567891011121314151617181920212223
  1. using ChocolArm64.Memory;
  2. namespace Ryujinx.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 long PhysPos { get; private set; }
  11. public HTransferMem(AMemory Memory, AMemoryPerm Perm, long Position, long Size, long PhysPos)
  12. {
  13. this.Memory = Memory;
  14. this.Perm = Perm;
  15. this.Position = Position;
  16. this.Size = Size;
  17. this.PhysPos = PhysPos;
  18. }
  19. }
  20. }