You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
715 B
24 lines
715 B
/* Capstone Disassembler Engine */ |
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */ |
|
|
|
#ifndef CS_ARM64_MAP_H |
|
#define CS_ARM64_MAP_H |
|
|
|
#include "../../include/capstone.h" |
|
#include "../../include/arm64.h" |
|
|
|
// return name of regiser in friendly string |
|
const char *AArch64_reg_name(csh handle, unsigned int reg); |
|
|
|
// given internal insn id, return public instruction info |
|
void AArch64_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id); |
|
|
|
// given public insn id, return internal instruction ID |
|
unsigned int AArch64_get_insn_id2(unsigned int id); |
|
|
|
const char *AArch64_insn_name(csh handle, unsigned int id); |
|
|
|
// map instruction name to public instruction ID |
|
arm64_reg AArch64_map_insn(const char *name); |
|
|
|
#endif
|
|
|