radare2/libr/asm/p/asm_gas.c
Nibble ddffdff8d2 * Rename r_asm_aop_* to r_asm_op_*
* Rename remaining r_anal_aop_*
2011-02-24 16:50:29 +01:00

40 lines
940 B
C

/* radare - LGPL - Copyright 2010-2011 pancake<nopcode.org> */
#include <r_types.h>
#include <r_util.h>
#include <r_lib.h>
#include <r_asm.h>
// XXX: TODO Implement
static int assemble(struct r_asm_t *a, struct r_asm_op_t *op, const char *buf) {
int len = 0;
char cmd[R_ASM_BUFSIZE];
ut8 *out;
sprintf(cmd, "gas /dev/stdin -o /dev/stdout <<__\nBITS %i\nORG 0x%"PFMT64x"\n%s\n__", a->bits, a->pc, buf);
out = (ut8 *)r_sys_cmd_str(cmd, "", &len);
if (out) {
memcpy(op->buf, out, len<=R_ASM_BUFSIZE?len:R_ASM_BUFSIZE);
free(out);
}
op->inst_len = len;
return len;
}
RAsmPlugin r_asm_plugin_x86_nasm = {
.name = "gas",
.desc = "GNU Assembler plugin",
.arch = "x86", // XXX
.bits = (int[]){ 16, 32, 64, 0 },
.init = NULL,
.fini = NULL,
.disassemble = NULL, /*&disassemble,*/
.assemble = &assemble,
};
#ifndef CORELIB
struct r_lib_struct_t radare_plugin = {
.type = R_LIB_TYPE_ASM,
.data = &r_asm_plugin_gas
};
#endif