2013-11-27 12:11:31 +08:00
|
|
|
/* 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
|
2013-12-12 05:14:42 +08:00
|
|
|
const char *ARM_reg_name(csh handle, unsigned int reg);
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
// given internal insn id, return public instruction ID
|
2014-01-06 10:56:59 +08:00
|
|
|
void ARM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2013-12-12 05:14:42 +08:00
|
|
|
const char *ARM_insn_name(csh handle, unsigned int id);
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
#endif
|