mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-20 12:18:18 +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>
35 lines
736 B
C
35 lines
736 B
C
/* radare - LGPL - Copyright 2012-2015 - pancake, condret */
|
|
|
|
// copypasta from asm_gb.c
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
#include <r_lib.h>
|
|
#include "../arch/6502/6502dis.c"
|
|
|
|
static int disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
|
|
int dlen = _6502Disass (a->pc, op, buf, len);
|
|
if(dlen<0) dlen=0;
|
|
op->size = dlen;
|
|
return dlen;
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_6502 = {
|
|
.name = "6502",
|
|
.desc = "6502/NES/C64/Tamagotchi/T-1000 CPU",
|
|
.arch = "6502",
|
|
.bits = 8|16,
|
|
.endian = R_SYS_ENDIAN_LITTLE,
|
|
.license = "LGPL3",
|
|
.disassemble = &disassemble,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_6502,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|