aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/KSharedMemory.cs
blob: cdd31667b8170ae1286b9c999d82d5e10f3689de (plain) (blame)
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;
        }
    }
}