This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ryujinx/src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
2023-04-27 23:51:14 +02:00

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;
}
}
}