opcode_description.h 262 B

12345678910111213
  1. #pragma once
  2. #include <stdio.h>
  3. #include "../tracker_engine/tracker_engine_defs.h"
  4. typedef struct
  5. {
  6. uint16_t opcode;
  7. uint16_t mask;
  8. char *name, *shortname;
  9. } OpcodeDescription;
  10. char *get_opcode_description(uint16_t opcode, bool short_description);