xref: /aosp_15_r20/external/capstone/arch/XCore/XCoreInstPrinter.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <[email protected]>, 2013-2015 */
3 
4 #ifndef CS_XCOREINSTPRINTER_H
5 #define CS_XCOREINSTPRINTER_H
6 
7 #include "../../MCInst.h"
8 #include "../../MCRegisterInfo.h"
9 #include "../../SStream.h"
10 
11 void XCore_printInst(MCInst *MI, SStream *O, void *Info);
12 
13 void XCore_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci);
14 
15 // extract details from assembly code @code
16 void XCore_insn_extract(MCInst *MI, const char *code);
17 
18 #endif
19