2014-05-27 10:45:58 +08:00
|
|
|
/* Capstone Disassembly Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
#ifndef CS_MIPSDISASSEMBLER_H
|
|
|
|
#define CS_MIPSDISASSEMBLER_H
|
|
|
|
|
|
|
|
#include "../../include/capstone.h"
|
|
|
|
|
|
|
|
#include "../../include/capstone.h"
|
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
|
|
|
|
void Mips_init(MCRegisterInfo *MRI);
|
|
|
|
|
2014-05-07 08:25:24 +08:00
|
|
|
bool Mips_getInstruction(csh handle, const uint8_t *code, size_t code_len,
|
2013-12-03 09:51:46 +08:00
|
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-05-07 08:25:24 +08:00
|
|
|
bool Mips64_getInstruction(csh handle, const uint8_t *code, size_t code_len,
|
2013-12-03 09:51:46 +08:00
|
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
#endif
|