mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00:00
18 lines
430 B
C#
18 lines
430 B
C#
|
using ARMeilleure.Instructions;
|
||
|
|
||
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
struct InstDescriptor
|
||
|
{
|
||
|
public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, null);
|
||
|
|
||
|
public InstName Name { get; }
|
||
|
public InstEmitter Emitter { get; }
|
||
|
|
||
|
public InstDescriptor(InstName name, InstEmitter emitter)
|
||
|
{
|
||
|
Name = name;
|
||
|
Emitter = emitter;
|
||
|
}
|
||
|
}
|
||
|
}
|