mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 18:31:03 +00:00
27 lines
867 B
C
27 lines
867 B
C
/* Capstone Disassembly Engine */
|
|
/* M68K Backend by Daniel Collin <daniel@collin.com> 2015 */
|
|
|
|
#ifndef CS_M68KINSTPRINTER_H
|
|
#define CS_M68KINSTPRINTER_H
|
|
|
|
#include "capstone/capstone.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "../../MCInst.h"
|
|
|
|
struct SStream;
|
|
|
|
void M68K_init(MCRegisterInfo *MRI);
|
|
void M68K_printInst(MCInst* MI, struct SStream* O, void* Info);
|
|
const char* M68K_reg_name(csh handle, unsigned int reg);
|
|
void M68K_get_insn_id(cs_struct* h, cs_insn* insn, unsigned int id);
|
|
const char *M68K_insn_name(csh handle, unsigned int id);
|
|
const char* M68K_group_name(csh handle, unsigned int id);
|
|
void M68K_post_printer(csh handle, cs_insn* flat_insn, char* insn_asm, MCInst* mci);
|
|
#ifndef CAPSTONE_DIET
|
|
void M68K_reg_access(const cs_insn *insn,
|
|
cs_regs regs_read, uint8_t *regs_read_count,
|
|
cs_regs regs_write, uint8_t *regs_write_count);
|
|
#endif
|
|
|
|
#endif
|