mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-12 08:40:58 +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>
30 lines
618 B
C
30 lines
618 B
C
/* radare - LGPL - Copyright 2014 - condret */
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
#include <r_lib.h>
|
|
#include "../arch/i4004/i4004dis.c"
|
|
|
|
static int disassemble (RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
|
|
return i4004dis (op,buf,len);
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_i4004 = {
|
|
.name = "i4004",
|
|
.desc = "Intel 4004 microprocessor",
|
|
.arch = "i4004",
|
|
.license = "LGPL3",
|
|
.bits = 4,
|
|
.endian = R_SYS_ENDIAN_NONE,
|
|
.disassemble = &disassemble
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_i4004,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|