mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 21:49:46 +00:00
24 lines
634 B
C
24 lines
634 B
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
|
|
|
|
#ifndef CS_SYSZ_MAP_H
|
|
#define CS_SYSZ_MAP_H
|
|
|
|
#include "capstone/capstone.h"
|
|
|
|
// return name of regiser in friendly string
|
|
const char *SystemZ_reg_name(csh handle, unsigned int reg);
|
|
|
|
// given internal insn id, return public instruction info
|
|
void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
|
|
|
|
const char *SystemZ_insn_name(csh handle, unsigned int id);
|
|
|
|
const char *SystemZ_group_name(csh handle, unsigned int id);
|
|
|
|
// map internal raw register to 'public' register
|
|
sysz_reg SystemZ_map_register(unsigned int r);
|
|
|
|
#endif
|
|
|