summaryrefslogtreecommitdiff
path: root/src/InstructionModifierLookup.h
blob: 1d82023514c5ac94b5b15af583f12b815b3373e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <array>

struct CPUContext;

typedef void (*ModifierEntry)(CPUContext&);

std::array<ModifierEntry, 256> GetMod32Table();

std::array<ModifierEntry, 256> GetSIBTable();