mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 21:49:46 +00:00
292116bd0d
* Declare global arch arrays with contents (#1171) This eliminates the need for archs_enable() and eliminates the racey initialization. This makes the architecture-specific init and option functions non-static so that they may be called from a different file. Cherry-picked853a2870
* Add cs_arch_disallowed_mode_mask global Cherry-pick94bce437
: mips: CS_MODE_MIPS32R6 implies CS_MODE_32 Cherry-pick8998a3a1
: ppc: fix endian check (#1029) Fixes bug where endianness could not be set for ppc. Remove `big_endian` field of `cs_struct`. Added a helper macro `MODE_IS_BIG_ENDIAN()` to check if `CS_MODE_BIG_ENDIAN` is set. Refactored `cs_open()` check for valid mode out of arch-specific code into arch-independent code. Also added a valid mode check to `cs_option()`. The checks use a new global array `cs_arch_disallowed_mode_mask[]`. * Make global arrays static Make all_arch uint32_t to guarantee a certain number of bits (with adequate room for growth).
43 lines
832 B
C
43 lines
832 B
C
/* Capstone Disassembly Engine */
|
|
/* M68K Backend by Daniel Collin <daniel@collin.com> 2015 */
|
|
|
|
#ifdef CAPSTONE_HAS_M68K
|
|
|
|
#include "../../utils.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "M68KDisassembler.h"
|
|
#include "M68KInstPrinter.h"
|
|
#include "M68KModule.h"
|
|
|
|
cs_err M68K_global_init(cs_struct *ud)
|
|
{
|
|
m68k_info *info;
|
|
|
|
info = cs_mem_malloc(sizeof(m68k_info));
|
|
if (!info) {
|
|
return CS_ERR_MEM;
|
|
}
|
|
|
|
ud->printer = M68K_printInst;
|
|
ud->printer_info = info;
|
|
ud->getinsn_info = NULL;
|
|
ud->disasm = M68K_getInstruction;
|
|
ud->skipdata_size = 2;
|
|
ud->post_printer = NULL;
|
|
|
|
ud->reg_name = M68K_reg_name;
|
|
ud->insn_id = M68K_get_insn_id;
|
|
ud->insn_name = M68K_insn_name;
|
|
ud->group_name = M68K_group_name;
|
|
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
cs_err M68K_option(cs_struct *handle, cs_opt_type type, size_t value)
|
|
{
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
#endif
|
|
|