1 /* Capstone Disassembly Engine */ 2 /* M680X Backend by Wolfgang Schwotzer <wolfgang.schwotzer@gmx.net> 2017 */ 3 4 #ifndef CS_M680XINSTPRINTER_H 5 #define CS_M680XINSTPRINTER_H 6 7 8 #include "capstone/capstone.h" 9 #include "../../MCRegisterInfo.h" 10 #include "../../MCInst.h" 11 12 struct SStream; 13 14 void M680X_init(MCRegisterInfo *MRI); 15 16 void M680X_printInst(MCInst *MI, struct SStream *O, void *Info); 17 const char *M680X_reg_name(csh handle, unsigned int reg); 18 const char *M680X_insn_name(csh handle, unsigned int id); 19 const char *M680X_group_name(csh handle, unsigned int id); 20 void M680X_post_printer(csh handle, cs_insn *flat_insn, char *insn_asm, 21 MCInst *mci); 22 23 #endif 24 25 26