diff options
author | bd <bdunahu@operationnull.com> | 2025-03-27 20:30:18 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-27 20:30:18 -0400 |
commit | eaa87e9fcd90c00d6261cbdb854efb7a09467f1d (patch) | |
tree | e7f4cc05a30e5589f8bd70ddc49f420369adbb3c /inc/instr.h | |
parent | 8d37d15ebd1221e3b1698abb3b051d9d0c044c93 (diff) |
Instr, InstrDTO gets/sets, other structures required for decode
Diffstat (limited to 'inc/instr.h')
-rw-r--r-- | inc/instr.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/instr.h b/inc/instr.h new file mode 100644 index 0000000..ce08685 --- /dev/null +++ b/inc/instr.h @@ -0,0 +1,14 @@ +#ifndef INSTR_H +#define INSTR_H + +#include <functional> +#include <map> + +namespace instr +{ +// clang-format off +extern const std::map<int,std::map<int,std::function<void(signed int &s1, signed int &s2, signed int &s3)>>> instr_map; +// clang-format on +} // namespace instr + +#endif /* INSTR_H_INCLUDED */ |