瀏覽代碼

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

gdkchan 6 年之前
父節點
當前提交
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; }