mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:48:32 +00:00
26 lines
560 B
C#
26 lines
560 B
C#
|
using ChocolArm64.Memory;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Ryujinx.HLE.OsHle.Utilities
|
||
|
{
|
||
|
class StructWriter
|
||
|
{
|
||
|
private AMemory Memory;
|
||
|
|
||
|
public long Position { get; private set; }
|
||
|
|
||
|
public StructWriter(AMemory Memory, long Position)
|
||
|
{
|
||
|
this.Memory = Memory;
|
||
|
this.Position = Position;
|
||
|
}
|
||
|
|
||
|
public void Write<T>(T Value) where T : struct
|
||
|
{
|
||
|
AMemoryHelper.Write(Memory, Position, Value);
|
||
|
|
||
|
Position += Marshal.SizeOf<T>();
|
||
|
}
|
||
|
}
|
||
|
}
|