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