38 lines
897 B
C
38 lines
897 B
C
// SPDX-FileCopyrightText: 2012-2018 pancake <pancake@nopcode.org>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#include <rz_types.h>
|
|
#include <rz_util.h>
|
|
#include <rz_lib.h>
|
|
#include <rz_asm.h>
|
|
|
|
#include "../arch/z80/z80.c"
|
|
#include "../arch/z80/z80asm.c"
|
|
|
|
static int do_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
|
|
return op->size = z80Disass(op, buf, len);
|
|
}
|
|
|
|
static int do_assemble(RzAsm *a, RzAsmOp *op, const char *buf) {
|
|
return op->size = z80asm((ut8 *)rz_strbuf_get(&op->buf), buf);
|
|
}
|
|
|
|
RzAsmPlugin rz_asm_plugin_z80 = {
|
|
.name = "z80",
|
|
.desc = "Zilog Z80",
|
|
.license = "GPL3",
|
|
.author = "condret",
|
|
.arch = "z80",
|
|
.bits = 8,
|
|
.endian = RZ_SYS_ENDIAN_NONE,
|
|
.disassemble = &do_disassemble,
|
|
.assemble = &do_assemble,
|
|
};
|
|
|
|
#ifndef RZ_PLUGIN_INCORE
|
|
RZ_API RzLibStruct rizin_plugin = {
|
|
.type = RZ_LIB_TYPE_ASM,
|
|
.data = &rz_asm_plugin_z80,
|
|
.version = RZ_VERSION
|
|
};
|
|
#endif
|