aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-02-29 08:12:15 -0300
committerGitHub <noreply@github.com>2020-02-29 12:12:15 +0100
commit6204f0e47af73b7e9257955bbd7171c6c881a269 (patch)
treec1b793ffa28e8c225574267dfe1b785a1dad911b
parentb1b6f294f252e998920e8f1e6a8eefa2860f0d2c (diff)
Set Undefined instruction emitter for Undefined property on InstDescriptor (#957)
-rw-r--r--ARMeilleure/Decoders/InstDescriptor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Decoders/InstDescriptor.cs b/ARMeilleure/Decoders/InstDescriptor.cs
index ee2b1c2e..29966d6d 100644
--- a/ARMeilleure/Decoders/InstDescriptor.cs
+++ b/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; }