Просмотр исходного кода

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

gdkchan 6 лет назад
Родитель
Сommit
6204f0e47a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      ARMeilleure/Decoders/InstDescriptor.cs

+ 1 - 1
ARMeilleure/Decoders/InstDescriptor.cs

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