Merge commit '802798ce3c8baa4697120580f87bc1ee377306d3' as 'external/capstone'

This commit is contained in:
2026-05-11 11:55:07 +02:00
3968 changed files with 2967598 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/* Capstone Disassembly Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
#ifndef CS_XCORE_MAP_H
#define CS_XCORE_MAP_H
#include "capstone/capstone.h"
extern const insn_map *XCore_insns;
extern const unsigned int XCore_insn_count;
// return name of register in friendly string
const char *XCore_reg_name(csh handle, unsigned int reg);
// given internal insn id, return public instruction info
void XCore_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
const char *XCore_insn_name(csh handle, unsigned int id);
const char *XCore_group_name(csh handle, unsigned int id);
// map internal raw register to 'public' register
xcore_reg XCore_map_register(unsigned int r);
// map register name to register ID
xcore_reg XCore_reg_id(char *name);
#endif