• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
3 
4 #ifndef CS_MIPSDISASSEMBLER_H
5 #define CS_MIPSDISASSEMBLER_H
6 
7 #include "../../include/capstone.h"
8 
9 #include "../../include/capstone.h"
10 #include "../../MCRegisterInfo.h"
11 
12 void Mips_init(MCRegisterInfo *MRI);
13 
14 bool Mips_getInstruction(csh handle, const uint8_t *code, size_t code_len,
15 		MCInst *instr, uint16_t *size, uint64_t address, void *info);
16 
17 bool Mips64_getInstruction(csh handle, const uint8_t *code, size_t code_len,
18 		MCInst *instr, uint16_t *size, uint64_t address, void *info);
19 
20 #endif
21