2014-03-23 00:35:45 +00:00
|
|
|
/* Capstone Disassembly Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
|
|
|
|
|
|
|
#ifndef CS_SYSZDISASSEMBLER_H
|
|
|
|
#define CS_SYSZDISASSEMBLER_H
|
|
|
|
|
2016-04-23 22:58:31 +00:00
|
|
|
#if !defined(_MSC_VER) || !defined(_KERNEL_MODE)
|
2014-03-23 00:35:45 +00:00
|
|
|
#include <stdint.h>
|
2016-04-23 22:58:31 +00:00
|
|
|
#endif
|
2014-03-23 00:35:45 +00:00
|
|
|
|
|
|
|
#include "../../include/capstone.h"
|
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "../../MCInst.h"
|
|
|
|
|
|
|
|
void SystemZ_init(MCRegisterInfo *MRI);
|
|
|
|
|
2014-05-07 00:25:24 +00:00
|
|
|
bool SystemZ_getInstruction(csh ud, const uint8_t *code, size_t code_len,
|
2014-03-23 00:35:45 +00:00
|
|
|
MCInst *instr, uint16_t *size, uint64_t address, void *info);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|