Home | History | Annotate | Download | only in AArch64
      1 /* Capstone Disassembly Engine */
      2 /* By Nguyen Anh Quynh <aquynh (at) gmail.com>, 2013-2014 */
      3 
      4 #ifndef CS_AARCH64_DISASSEMBLER_H
      5 #define CS_AARCH64_DISASSEMBLER_H
      6 
      7 #if !defined(_MSC_VER) || !defined(_KERNEL_MODE)
      8 #include <stdint.h>
      9 #endif
     10 
     11 #include "../../include/capstone.h"
     12 #include "../../MCRegisterInfo.h"
     13 #include "../../MCInst.h"
     14 
     15 void AArch64_init(MCRegisterInfo *MRI);
     16 
     17 bool AArch64_getInstruction(csh ud, const uint8_t *code, size_t code_len,
     18 		MCInst *instr, uint16_t *size, uint64_t address, void *info);
     19 
     20 #endif
     21