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