Set Undefined instruction emitter for Undefined property on InstDescriptor (#957)

This commit is contained in:
gdkchan 2020-02-29 08:12:15 -03:00 committed by GitHub
parent a8e2ec9f58
commit f5bb5e9df2

View File

@ -4,7 +4,7 @@ namespace ARMeilleure.Decoders
{
struct InstDescriptor
{
public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, null);
public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, InstEmit.Und);
public InstName Name { get; }
public InstEmitter Emitter { get; }