aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs
blob: 3d11d0212c691d209e3c15022cd42662d04b6a7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
{
    readonly struct HipcStaticDescriptor
    {
        private readonly ulong _data;

        public ulong Address => ((((_data >> 2) & 0x70) | ((_data >> 12) & 0xf)) << 32) | (_data >> 32);
        public ushort Size => (ushort)(_data >> 16);
        public int ReceiveIndex => (int)(_data & 0xf);

        public HipcStaticDescriptor(ulong address, ushort size, int receiveIndex)
        {
            ulong data = (uint)(receiveIndex & 0xf) | ((uint)size << 16);

            data |= address << 32;
            data |= (address >> 20) & 0xf000;
            data |= (address >> 30) & 0xffc0;

            _data = data;
        }
    }
}