radare2/libr/asm/p/asm_z80.c
pancake fa671b9a16 Initial support for the Meson build system
- Integrated with current ACR
- Fix some stale fails got removed
2017-05-02 05:05:36 +02:00

37 lines
767 B
C

/* radare - LGPL - Copyright 2012-2017 - pancake */
#include <r_types.h>
#include <r_util.h>
#include <r_lib.h>
#include <r_asm.h>
#include "../arch/z80/z80.c"
#include "../arch/z80/z80asm.c"
static int do_disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
return op->size = z80Disass (op, buf, len);
}
static int do_assemble(RAsm *a, RAsmOp *op, const char *buf) {
return op->size = z80asm (op->buf, buf);
}
RAsmPlugin r_asm_plugin_z80 = {
.name = "z80",
.desc = "Zilog Z80",
.license = "GPL",
.arch = "z80",
.bits = 8,
.endian = R_SYS_ENDIAN_NONE,
.disassemble = &do_disassemble,
.assemble = &do_assemble,
};
#ifndef CORELIB
RLibStruct radare_plugin = {
.type = R_LIB_TYPE_ASM,
.data = &r_asm_plugin_z80,
.version = R2_VERSION
};
#endif