Set Undefined instruction emitter for Undefined property on InstDescriptor

This commit is contained in:
gdkchan 2020-02-28 21:58:02 -03:00
parent b1b6f294f2
commit 28e1f2213c

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