mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:48:38 +00:00
20 lines
474 B
C#
20 lines
474 B
C#
|
using ARMeilleure.IntermediateRepresentation;
|
||
|
|
||
|
namespace ARMeilleure.CodeGen.Unwinding
|
||
|
{
|
||
|
struct UnwindPushEntry
|
||
|
{
|
||
|
public int Index { get; }
|
||
|
|
||
|
public RegisterType Type { get; }
|
||
|
|
||
|
public int StreamEndOffset { get; }
|
||
|
|
||
|
public UnwindPushEntry(int index, RegisterType type, int streamEndOffset)
|
||
|
{
|
||
|
Index = index;
|
||
|
Type = type;
|
||
|
StreamEndOffset = streamEndOffset;
|
||
|
}
|
||
|
}
|
||
|
}
|