summaryrefslogtreecommitdiff
path: root/src/InstructionModifierLookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/InstructionModifierLookup.h')
-rw-r--r--src/InstructionModifierLookup.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/InstructionModifierLookup.h b/src/InstructionModifierLookup.h
new file mode 100644
index 0000000..1d82023
--- /dev/null
+++ b/src/InstructionModifierLookup.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <array>
+
+struct CPUContext;
+
+typedef void (*ModifierEntry)(CPUContext&);
+
+std::array<ModifierEntry, 256> GetMod32Table();
+
+std::array<ModifierEntry, 256> GetSIBTable();