xref: /aosp_15_r20/external/capstone/arch/AArch64/AArch64Disassembler.h (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <[email protected]>, 2013-2015 */
3 
4 #ifndef CS_AARCH64_DISASSEMBLER_H
5 #define CS_AARCH64_DISASSEMBLER_H
6 
7 #include "capstone/capstone.h"
8 #include "../../MCRegisterInfo.h"
9 #include "../../MCInst.h"
10 
11 void AArch64_init(MCRegisterInfo *MRI);
12 
13 bool AArch64_getInstruction(csh ud, const uint8_t *code, size_t code_len,
14 		MCInst *instr, uint16_t *size, uint64_t address, void *info);
15 
16 #endif
17