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 b1b6f294f2
commit 6204f0e47a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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