mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 18:32:56 +00:00
![pancake](/assets/img/avatar_default.png)
- Fix uninitialized variables and other GCC warnings - Remove unused variables, fix invalid heap ops - ?p print error if VA is not - Fix invalid write in r_io_cache_read(). * add support for 'mov reg, [addr]' in x86.nz[32]
50 lines
1.0 KiB
C
50 lines
1.0 KiB
C
/* radare - GPL3 - Copyright 2009-2012 nibble<.ds@gmail.com> */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <r_types.h>
|
|
#include <r_lib.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
|
|
#include "m68k/m68k_disasm/m68k_disasm.h"
|
|
|
|
static int disassemble(RAsm *a, RAsmOp *aop, const ut8 *buf, ut64 len) {
|
|
m68k_word bof[4];
|
|
m68k_word iaddr = (m68k_word)a->pc;
|
|
char opcode[256];
|
|
char operands[256];
|
|
|
|
static struct DisasmPara_68k dp;
|
|
/* initialize DisasmPara */
|
|
memcpy(bof, buf, 4);
|
|
dp.opcode = opcode;
|
|
dp.operands = operands;
|
|
dp.iaddr = &iaddr;
|
|
dp.instr = bof;
|
|
M68k_Disassemble(&dp);
|
|
snprintf (aop->buf_asm, R_ASM_BUFSIZE, "%s %s", opcode, operands);
|
|
aop->inst_len = 4;
|
|
|
|
return aop->inst_len;
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_m68k = {
|
|
.name = "m68k",
|
|
.arch = "m68k",
|
|
.bits = (int[]){ 32, 0 },
|
|
.desc = "Motorola 68000 disassembly plugin",
|
|
.init = NULL,
|
|
.fini = NULL,
|
|
.disassemble = &disassemble,
|
|
.assemble = NULL
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_m68k
|
|
};
|
|
#endif
|