2013-11-27 12:11:31 +08:00
|
|
|
/* Capstone Disassembler Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
|
|
|
|
|
|
|
#ifndef __SB_AARCH64DISASSEMBLER_H
|
|
|
|
#define __SB_AARCH64DISASSEMBLER_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "../../include/capstone.h"
|
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "../../MCInst.h"
|
|
|
|
|
|
|
|
void AArch64_init(MCRegisterInfo *MRI);
|
|
|
|
|
2013-11-29 17:40:07 +08:00
|
|
|
bool AArch64_getInstruction(csh ud, unsigned char *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
|