mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-11 20:57:47 +02:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs
Normal file
15
src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user