• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
3 
4 #ifndef CS_SYSZ_MAP_H
5 #define CS_SYSZ_MAP_H
6 
7 #include "../../include/capstone.h"
8 
9 // return name of regiser in friendly string
10 const char *SystemZ_reg_name(csh handle, unsigned int reg);
11 
12 // given internal insn id, return public instruction info
13 void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
14 
15 const char *SystemZ_insn_name(csh handle, unsigned int id);
16 
17 const char *SystemZ_group_name(csh handle, unsigned int id);
18 
19 // map internal raw register to 'public' register
20 sysz_reg SystemZ_map_register(unsigned int r);
21 
22 #endif
23 
24