aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Decoders/InstDescriptor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Decoders/InstDescriptor.cs')
-rw-r--r--src/ARMeilleure/Decoders/InstDescriptor.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ARMeilleure/Decoders/InstDescriptor.cs b/src/ARMeilleure/Decoders/InstDescriptor.cs
new file mode 100644
index 00000000..577ff394
--- /dev/null
+++ b/src/ARMeilleure/Decoders/InstDescriptor.cs
@@ -0,0 +1,18 @@
+using ARMeilleure.Instructions;
+
+namespace ARMeilleure.Decoders
+{
+ readonly struct InstDescriptor
+ {
+ public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, InstEmit.Und);
+
+ public InstName Name { get; }
+ public InstEmitter Emitter { get; }
+
+ public InstDescriptor(InstName name, InstEmitter emitter)
+ {
+ Name = name;
+ Emitter = emitter;
+ }
+ }
+} \ No newline at end of file