1 /* Capstone Disassembly Engine */ 2 /* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */ 3 4 #ifndef CS_TMS320C64XDISASSEMBLER_H 5 #define CS_TMS320C64XDISASSEMBLER_H 6 7 #include <stdint.h> 8 9 #include "capstone/capstone.h" 10 #include "../../MCRegisterInfo.h" 11 #include "../../MCInst.h" 12 13 void TMS320C64x_init(MCRegisterInfo *MRI); 14 15 bool TMS320C64x_getInstruction(csh ud, const uint8_t *code, size_t code_len, 16 MCInst *instr, uint16_t *size, uint64_t address, void *info); 17 18 #endif 19 20