2016-05-15 20:13:19 +08:00
|
|
|
/* Capstone Disassembly Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
|
|
|
|
|
|
|
#ifndef CS_TRICORE_MAP_H
|
|
|
|
#define CS_TRICORE_MAP_H
|
|
|
|
|
2023-03-04 07:21:30 +08:00
|
|
|
#include <capstone/capstone.h>
|
2016-05-15 20:13:19 +08:00
|
|
|
|
2023-04-10 07:48:21 +08:00
|
|
|
unsigned int TriCore_map_insn_id(cs_struct *h, unsigned int id);
|
|
|
|
|
2016-05-15 20:13:19 +08:00
|
|
|
// given internal insn id, return public instruction info
|
|
|
|
void TriCore_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
|
|
|
|
|
|
|
|
const char *TriCore_insn_name(csh handle, unsigned int id);
|
|
|
|
|
2016-07-16 17:44:33 +08:00
|
|
|
const char *TriCore_group_name(csh handle, unsigned int id);
|
|
|
|
|
2016-05-15 20:13:19 +08:00
|
|
|
#endif
|