汇编插件
Radare2 has modular architecture, thus adding support for a new architecture is very easy, if you are fluent in C. For various reasons it might be easier to implement it out of the tree. For this we will need to create single C file, called asm_mycpu.c
and makefile for it.
The key thing of RAsm plugin is a structure
where .disassemble
is a pointer to disassembly function, which accepts the bytes buffer and length:
Makefile
asm_mycpu.c
After compiling radare2 will list this plugin in the output:
Moving plugin into the tree
Pushing a new architecture into the main branch of r2 requires to modify several files in order to make it fit into the way the rest of plugins are built.
List of affected files:
plugins.def.cfg
: add theasm.mycpu
plugin name string in therelibr/asm/p/mycpu.mk
: build instructionslibr/asm/p/asm_mycpu.c
: implementationlibr/include/r_asm.h
: add the struct definition in there
Check out how the NIOS II CPU disassembly plugin was implemented by reading those commits:
最后更新于
这有帮助吗?