mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-27 15:30:33 +00:00
19 lines
462 B
C
19 lines
462 B
C
/* Capstone Disassembler Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
|
|
|
#ifndef CS_AARCH64_DISASSEMBLER_H
|
|
#define CS_AARCH64_DISASSEMBLER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "../../include/capstone.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "../../MCInst.h"
|
|
|
|
void AArch64_init(MCRegisterInfo *MRI);
|
|
|
|
bool AArch64_getInstruction(csh ud, const uint8_t *code, size_t code_len,
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
|
|
|
#endif
|