KSharedMemory.cs 294 B

1234567891011121314
  1. namespace Ryujinx.HLE.HOS.Kernel
  2. {
  3. class KSharedMemory
  4. {
  5. public long PA { get; private set; }
  6. public long Size { get; private set; }
  7. public KSharedMemory(long PA, long Size)
  8. {
  9. this.PA = PA;
  10. this.Size = Size;
  11. }
  12. }
  13. }