Ryujinx/src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
2023-04-27 23:51:14 +02:00

16 lines
No EOL
388 B
C#

namespace ARMeilleure.CodeGen.Unwinding
{
struct UnwindInfo
{
public const int Stride = 4; // Bytes.
public UnwindPushEntry[] PushEntries { get; }
public int PrologSize { get; }
public UnwindInfo(UnwindPushEntry[] pushEntries, int prologSize)
{
PushEntries = pushEntries;
PrologSize = prologSize;
}
}
}