You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
410 B
16 lines
410 B
/* Capstone Disassembly Engine */
|
|
/* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */
|
|
|
|
#ifndef CS_TMS320C64XINSTPRINTER_H
|
|
#define CS_TMS320C64XINSTPRINTER_H
|
|
|
|
#include "../../MCInst.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "../../SStream.h"
|
|
|
|
void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info);
|
|
|
|
void TMS320C64x_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci);
|
|
|
|
#endif
|