2014-04-28 11:19:44 +08:00
|
|
|
/* Capstone Disassembly Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
2013-12-30 00:29:32 +08:00
|
|
|
|
|
|
|
#ifndef CS_PPCDISASSEMBLER_H
|
|
|
|
#define CS_PPCDISASSEMBLER_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "../../include/capstone.h"
|
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "../../MCInst.h"
|
|
|
|
|
|
|
|
void PPC_init(MCRegisterInfo *MRI);
|
|
|
|
|
2014-04-28 11:19:44 +08:00
|
|
|
bool PPC_getInstruction(csh ud, const uint8_t *code, uint8_t **modcode, size_t code_len,
|
2013-12-30 00:29:32 +08:00
|
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|