mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
16 lines
388 B
C#
16 lines
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;
|
|
}
|
|
}
|
|
} |