xref: /aosp_15_r20/external/capstone/arch/M680X/M680XInstPrinter.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* M680X Backend by Wolfgang Schwotzer <[email protected]> 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