Files
Ryujinx/src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs
2023-04-27 23:51:14 +02:00

14 lines
293 B
C#

namespace ARMeilleure.CodeGen.Arm64
{
struct IntrinsicInfo
{
public uint Inst { get; }
public IntrinsicType Type { get; }
public IntrinsicInfo(uint inst, IntrinsicType type)
{
Inst = inst;
Type = type;
}
}
}