radare2/libr/asm/p/asm_pic.c
2018-09-15 22:52:12 +02:00

42 lines
1.1 KiB
C

/* radare2 - LGPL - Copyright 2018 - thestr4ng3r, courk */
#include <r_asm.h>
#include <r_lib.h>
#include "../arch/pic/pic_baseline.h"
#include "../arch/pic/pic_pic18.h"
#include "../arch/pic/pic_midrange.h"
static int asm_pic_disassemble(RAsm *a, RAsmOp *op, const ut8 *b, int l) {
int res = -1;
char opbuf[128];
const char *opstr = opbuf;
strcpy (opbuf, "invalid");
if (a->cpu && strcasecmp (a->cpu, "baseline") == 0) {
res = pic_baseline_disassemble (op, opbuf, b, l);
} else if (a->cpu && strcasecmp (a->cpu, "midrange") == 0) {
res = pic_midrange_disassemble (op, opbuf, b, l);
} else if (a->cpu && strcasecmp (a->cpu, "pic18") == 0) {
res = pic_pic18_disassemble (op, opbuf, b, l);
}
r_asm_op_set_asm (op, opstr);
return op->size = res;
}
RAsmPlugin r_asm_plugin_pic = {
.name = "pic",
.arch = "pic",
.cpus = "baseline,midrange,pic18",
.bits = 8,
.license = "LGPL3",
.desc = "PIC disassembler",
.disassemble = &asm_pic_disassemble
};
#ifndef CORELIB
R_API RLibStruct radare_plugin = {
.type = R_LIB_TYPE_ASM,
.data = &r_asm_plugin_pic
};
#endif