mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-27 08:12:44 +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>
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
/*
|
|
* TMS320 disassembly engine
|
|
*
|
|
* Written by Ilya V. Matveychikov <i.matveychikov@milabs.ru>
|
|
*
|
|
* Distributed under LGPLv3
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <r_types.h>
|
|
#include <r_lib.h>
|
|
#include <r_asm.h>
|
|
|
|
#include "../arch/tms320/tms320_dasm.h"
|
|
|
|
static tms320_dasm_t engine = { };
|
|
|
|
static int tms320_disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
|
|
if (a->cpu && strcasecmp(a->cpu, "c54x") == 0)
|
|
tms320_f_set_cpu(&engine, TMS320_F_CPU_C54X);
|
|
if (a->cpu && strcasecmp(a->cpu, "c55x") == 0)
|
|
tms320_f_set_cpu(&engine, TMS320_F_CPU_C55X);
|
|
if (a->cpu && strcasecmp(a->cpu, "c55x+") == 0)
|
|
tms320_f_set_cpu(&engine, TMS320_F_CPU_C55X_PLUS);
|
|
op->size = tms320_dasm (&engine, buf, len);
|
|
snprintf (op->buf_asm, R_ASM_BUFSIZE-1, "%s", engine.syntax);
|
|
return op->size;
|
|
}
|
|
|
|
static bool tms320_init(void * user) {
|
|
return tms320_dasm_init (&engine);
|
|
}
|
|
|
|
static bool tms320_fini(void * user) {
|
|
return tms320_dasm_fini (&engine);
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_tms320 = {
|
|
.name = "tms320",
|
|
.arch = "tms320",
|
|
.cpus = "c54x,c55x,c55x+",
|
|
.desc = "TMS320 DSP family",
|
|
.license = "LGPLv3",
|
|
.bits = 32,
|
|
.endian = R_SYS_ENDIAN_LITTLE | R_SYS_ENDIAN_BIG,
|
|
.init = tms320_init,
|
|
.fini = tms320_fini,
|
|
.disassemble = &tms320_disassemble,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_tms320,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|