aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
index 05798fe1..7ea2af0a 100644
--- a/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
@@ -5,8 +5,8 @@ namespace Ryujinx.HLE.HOS.Ipc
struct IpcPtrBuffDesc
{
public ulong Position { get; private set; }
- public uint Index { get; private set; }
- public ulong Size { get; private set; }
+ public uint Index { get; private set; }
+ public ulong Size { get; private set; }
public IpcPtrBuffDesc(ulong position, uint index, ulong size)
{
@@ -20,26 +20,26 @@ namespace Ryujinx.HLE.HOS.Ipc
ulong word0 = reader.ReadUInt32();
ulong word1 = reader.ReadUInt32();
- Position = word1;
+ Position = word1;
Position |= (word0 << 20) & 0x0f00000000;
Position |= (word0 << 30) & 0x7000000000;
- Index = ((uint)word0 >> 0) & 0x03f;
+ Index = ((uint)word0 >> 0) & 0x03f;
Index |= ((uint)word0 >> 3) & 0x1c0;
Size = (ushort)(word0 >> 16);
}
- public IpcPtrBuffDesc WithSize(ulong size)
+ public readonly IpcPtrBuffDesc WithSize(ulong size)
{
return new IpcPtrBuffDesc(Position, Index, size);
}
- public uint GetWord0()
+ public readonly uint GetWord0()
{
uint word0;
- word0 = (uint)((Position & 0x0f00000000) >> 20);
+ word0 = (uint)((Position & 0x0f00000000) >> 20);
word0 |= (uint)((Position & 0x7000000000) >> 30);
word0 |= (Index & 0x03f) << 0;
@@ -50,9 +50,9 @@ namespace Ryujinx.HLE.HOS.Ipc
return word0;
}
- public uint GetWord1()
+ public readonly uint GetWord1()
{
return (uint)Position;
}
}
-} \ No newline at end of file
+}