diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-02-29 08:12:15 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-29 12:12:15 +0100 |
| commit | 6204f0e47af73b7e9257955bbd7171c6c881a269 (patch) | |
| tree | c1b793ffa28e8c225574267dfe1b785a1dad911b | |
| parent | b1b6f294f252e998920e8f1e6a8eefa2860f0d2c (diff) | |
Set Undefined instruction emitter for Undefined property on InstDescriptor (#957)
| -rw-r--r-- | ARMeilleure/Decoders/InstDescriptor.cs | 2 |
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; } |
