mirror of
https://github.com/capstone-engine/capstone.git
synced 2025-01-08 22:41:05 +00:00
23 lines
614 B
C
23 lines
614 B
C
/* Capstone Disassembler Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
|
|
|
#ifndef CS_ARM_MAP_H
|
|
#define CS_ARM_MAP_H
|
|
|
|
#include "../../include/capstone.h"
|
|
#include "../../include/arm.h"
|
|
#include "../../utils.h"
|
|
|
|
// return name of regiser in friendly string
|
|
const char *ARM_reg_name(csh handle, unsigned int reg);
|
|
|
|
// given internal insn id, return public instruction ID
|
|
void ARM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
|
|
|
|
const char *ARM_insn_name(csh handle, unsigned int id);
|
|
|
|
// check if this insn is relative branch
|
|
bool ARM_rel_branch(cs_struct *h, unsigned int insn_id);
|
|
|
|
#endif
|