opcode_description.h 262 B

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