mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 18:36:39 +00:00
16 lines
521 B
C#
16 lines
521 B
C#
|
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|||
|
{
|
|||
|
struct HipcBufferDescriptor
|
|||
|
{
|
|||
|
#pragma warning disable CS0649
|
|||
|
private uint _sizeLow;
|
|||
|
private uint _addressLow;
|
|||
|
private uint _word2;
|
|||
|
#pragma warning restore CS0649
|
|||
|
|
|||
|
public ulong Address => _addressLow | (((ulong)_word2 << 4) & 0xf00000000UL) | (((ulong)_word2 << 34) & 0x7000000000UL);
|
|||
|
public ulong Size => _sizeLow | ((ulong)_word2 << 8) & 0xf00000000UL;
|
|||
|
public HipcBufferMode Mode => (HipcBufferMode)(_word2 & 3);
|
|||
|
}
|
|||
|
}
|