mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 12:36:30 +00:00
f47b8c01e6
- Added pseudo-instruction .bits - Added asm_x86_nasm as static plugin * r_bin - Added pe, pe64, elf64 and java as static plugins
36 lines
582 B
C
36 lines
582 B
C
#ifndef _INCLUDE_CONFIG_H_
|
|
#define _INCLUDE_CONFIG_H_
|
|
|
|
#define R_DEBUG 0
|
|
#define R_RTDEBUG 1
|
|
|
|
/* inlined APIs */
|
|
#define R_INLINE 0
|
|
|
|
#define DEFAULT_ARCH "x86"
|
|
|
|
#define R_ASM_STATIC_PLUGINS \
|
|
&r_asm_plugin_java, \
|
|
&r_asm_plugin_x86_olly, \
|
|
&r_asm_plugin_x86_nasm, \
|
|
&r_asm_plugin_mips, \
|
|
0
|
|
|
|
#define R_BIN_STATIC_PLUGINS \
|
|
&r_bin_plugin_elf , \
|
|
&r_bin_plugin_elf64 , \
|
|
&r_bin_plugin_pe , \
|
|
&r_bin_plugin_pe64 , \
|
|
&r_bin_plugin_java , \
|
|
0
|
|
|
|
#define R_BININFO_STATIC_PLUGINS \
|
|
&r_bininfo_plugin_addr2line, \
|
|
0
|
|
|
|
#define R_BP_STATIC_PLUGINS \
|
|
&r_bp_plugin_x86, \
|
|
0
|
|
|
|
#endif
|