rizin/librz/arch/p-asm/asm_v810.c
2024-03-07 18:38:49 +08:00

44 lines
957 B
C

// SPDX-FileCopyrightText: 2012-2018 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include <stdio.h>
#include <string.h>
#include <rz_types.h>
#include <rz_lib.h>
#include <rz_asm.h>
#include "../arch/v810/v810_disas.h"
static int v810_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
struct v810_cmd cmd = {
.instr = "",
.operands = ""
};
if (len < 2) {
return -1;
}
int ret = v810_decode_command(buf, len, &cmd);
if (ret > 0) {
rz_asm_op_setf_asm(op, "%s %s", cmd.instr, cmd.operands);
}
return op->size = ret;
}
RzAsmPlugin rz_asm_plugin_v810 = {
.name = "v810",
.license = "LGPL3",
.desc = "v810 disassembly plugin",
.author = "pancake",
.arch = "v810",
.bits = 32,
.endian = RZ_SYS_ENDIAN_LITTLE,
.disassemble = &v810_disassemble
};
#ifndef RZ_PLUGIN_INCORE
RZ_API RzLibStruct rizin_plugin = {
.type = RZ_LIB_TYPE_ASM,
.data = &rz_asm_plugin_v810,
.version = RZ_VERSION
};
#endif