diff options
Diffstat (limited to 'src/InstructionModifierLookup.h')
| -rw-r--r-- | src/InstructionModifierLookup.h | 11 |
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(); |
