Archived
1
0
forked from MeloNX/MeloNX
This repository has been archived on 2025-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
MeloNX/ARMeilleure/Decoders/InstDescriptor.cs

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;
}
}
}