2014-04-28 11:19:44 +08:00
|
|
|
/* Capstone Disassembly Engine */
|
2015-03-04 17:45:23 +08:00
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-01-02 12:44:20 +08:00
|
|
|
#ifndef CS_AARCH64_DISASSEMBLER_H
|
|
|
|
#define CS_AARCH64_DISASSEMBLER_H
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2015-02-24 11:55:55 +08:00
|
|
|
#include "capstone/capstone.h"
|
2013-11-27 12:11:31 +08:00
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "../../MCInst.h"
|
|
|
|
|
|
|
|
void AArch64_init(MCRegisterInfo *MRI);
|
|
|
|
|
2014-05-07 08:25:24 +08:00
|
|
|
bool AArch64_getInstruction(csh ud, 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
|