Rizin
unix-like reverse engineering framework and cli tools
asm_v850.c
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: 2012-2018 pancake <pancake@nopcode.org>
2 // SPDX-License-Identifier: LGPL-3.0-only
3 
4 #include <stdio.h>
5 #include <string.h>
6 #include <rz_types.h>
7 #include <rz_lib.h>
8 #include <rz_asm.h>
9 
10 #include <v850_disas.h>
11 
12 static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
13  struct v850_cmd cmd = {
14  .addr = a->pc,
15  .instr = "",
16  .operands = ""
17  };
18  if (len < 2) {
19  return -1;
20  }
21  int ret = v850_decode_command(buf, len, &cmd);
22  if (ret > 0) {
23  rz_asm_op_set_asm(op, sdb_fmt("%s %s", cmd.instr, cmd.operands));
24  }
25  return op->size = ret;
26 }
27 
29  .name = "v850",
30  .license = "LGPL3",
31  .desc = "v850 disassembly plugin",
32  .arch = "v850",
33  .bits = 32,
34  .endian = RZ_SYS_ENDIAN_LITTLE,
35  .disassemble = &disassemble
36 };
37 
38 #ifndef RZ_PLUGIN_INCORE
41  .data = &rz_asm_plugin_v850,
43 };
44 #endif
size_t len
Definition: 6502dis.c:15
RZ_API void rz_asm_op_set_asm(RzAsmOp *op, const char *str)
Definition: aop.c:53
RZ_API RzLibStruct rizin_plugin
Definition: asm_v850.c:39
RzAsmPlugin rz_asm_plugin_v850
Definition: asm_v850.c:28
static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len)
Definition: asm_v850.c:12
#define RZ_API
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags cmd
Definition: sflib.h:79
RZ_API char * sdb_fmt(const char *fmt,...)
Definition: fmt.c:26
voidpf void * buf
Definition: ioapi.h:138
uint8_t ut8
Definition: lh5801.h:11
@ RZ_LIB_TYPE_ASM
Definition: rz_lib.h:72
#define RZ_SYS_ENDIAN_LITTLE
Definition: rz_types.h:526
#define RZ_VERSION
Definition: rz_version.h:8
#define a(i)
Definition: sha256.c:41
const char * name
Definition: rz_asm.h:130
const char * version
Definition: rz_asm.h:133
Definition: dis.c:32
int v850_decode_command(const ut8 *instr, int len, struct v850_cmd *cmd)
Definition: v850_disas.c:301