Switch to Capstone for ARM by default

This commit is contained in:
pancake 2014-11-10 06:27:19 +01:00
parent 293ba25765
commit 208b6ce089
4 changed files with 4 additions and 4 deletions

View File

@ -365,7 +365,7 @@ static int set_reg_profile(RAnal *anal) {
}
RAnalPlugin r_anal_plugin_arm_cs = {
.name = "arm.cs",
.name = "arm",
.desc = "Capstone ARM analyzer",
.license = "BSD",
.esil = R_TRUE,

View File

@ -433,7 +433,7 @@ static int set_reg_profile(RAnal *anal) {
}
struct r_anal_plugin_t r_anal_plugin_arm_gnu = {
.name = "arm",
.name = "arm.gnu",
.arch = R_SYS_ARCH_ARM,
.license = "LGPL3",
.bits = 32 | 64,

View File

@ -53,7 +53,7 @@ static int disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
}
RAsmPlugin r_asm_plugin_arm_cs = {
.name = "arm.cs",
.name = "arm",
.desc = "Capstone ARM disassembler",
.license = "BSD",
.arch = "arm",

View File

@ -194,7 +194,7 @@ static int assemble(RAsm *a, RAsmOp *op, const char *buf) {
}
RAsmPlugin r_asm_plugin_arm_gnu = {
.name = "arm",
.name = "arm.gnu",
.arch = "arm",
.bits = 16|32|64,
.desc = "Acorn RISC Machine CPU",