mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-25 07:15:19 +00:00
46 lines
1.0 KiB
C
46 lines
1.0 KiB
C
/* radare2, Sharp LH5801 disassembler.
|
|
* (C) Copyright 2014-2015 jn, published under the LGPLv3 */
|
|
|
|
#include "../../arch/lh5801/lh5801.c"
|
|
#include <r_asm.h>
|
|
#include <r_types.h>
|
|
#include <r_lib.h>
|
|
|
|
static int disassemble(RAsm *as, RAsmOp *op, const ut8 *buf, int len) {
|
|
struct lh5801_insn insn = {0};
|
|
if (!op) {
|
|
return 0;
|
|
}
|
|
int consumed = lh5801_decode (&insn, buf, len);
|
|
if (consumed == -1 || consumed == 0) {
|
|
r_strbuf_set (&op->buf_asm, "invalid");
|
|
op->size = 1;
|
|
return 0;
|
|
}
|
|
char buf_asm[128] = {0};
|
|
lh5801_print_insn (buf_asm, sizeof (buf_asm), &insn);
|
|
r_strbuf_set (&op->buf_asm, buf_asm);
|
|
op->size = consumed;
|
|
//op->payload = lh5801_insn_descs[insn.type].format & 3;
|
|
// ^ MAYBE?
|
|
return op->size;
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_lh5801 = {
|
|
.name = "lh5801",
|
|
.arch = "LH5801",
|
|
.license = "LGPL3",
|
|
.bits = 8,
|
|
.endian = R_SYS_ENDIAN_NONE,
|
|
.desc = "SHARP LH5801 disassembler",
|
|
.disassemble = &disassemble
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
R_API RLibStruct radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_lh5801,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|