mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-20 04:09:41 +00:00
af0a865d9f
- Adds endian aware functions - Removes references to host endian - Uses binary detected endianness else tries LE and restricts by RAsmPlugin - Fixes gdb debugger endianness when debugging BE qemu gdbserver Signed-off-by: Damien Zammit <damien@zamaudio.com>
36 lines
755 B
C
36 lines
755 B
C
/* radare - LGPL - Copyright 2012-2014 - pancake
|
|
2014 - condret */
|
|
|
|
// fork of asm_z80.c
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
#include <r_lib.h>
|
|
#include "../arch/spc700/spc700dis.c"
|
|
|
|
static int disassemble(RAsm *a, RAsmOp *r_op, const ut8 *buf, int len) {
|
|
int dlen = spc700Disass(r_op, buf, len);
|
|
if(dlen < 0) dlen=0;
|
|
r_op->size = dlen;
|
|
return dlen;
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_spc700 = {
|
|
.name = "spc700",
|
|
.desc = "spc700, snes' sound-chip",
|
|
.arch = "spc700",
|
|
.license = "LGPL3",
|
|
.bits = 16,
|
|
.endian = R_SYS_ENDIAN_NONE, // is this LE?
|
|
.disassemble = &disassemble,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_spc700,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|