mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-15 16:16:40 +00:00
14 lines
293 B
C#
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;
|
||
|
}
|
||
|
}
|
||
|
}
|