2014-05-26 23:02:48 +08:00
|
|
|
/* Capstone Disassembly Engine */
|
2015-03-04 17:45:23 +08:00
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
|
2014-05-26 23:02:48 +08:00
|
|
|
|
|
|
|
#ifndef CS_XCOREDISASSEMBLER_H
|
|
|
|
#define CS_XCOREDISASSEMBLER_H
|
|
|
|
|
2015-02-24 11:55:55 +08:00
|
|
|
#include "capstone/capstone.h"
|
2014-05-26 23:02:48 +08:00
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "../../MCInst.h"
|
|
|
|
|
|
|
|
void XCore_init(MCRegisterInfo *MRI);
|
|
|
|
|
|
|
|
bool XCore_getInstruction(csh ud, const uint8_t *code, size_t code_len,
|
|
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|