rizin/librz/arch/p-asm/asm_spc700.c
2024-03-07 18:38:49 +08:00

33 lines
844 B
C

// SPDX-FileCopyrightText: 2012-2014 pancake <pancake@nopcode.org>
// SPDX-FileCopyrightText: 2014 condret <condr3t@protonmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_types.h>
#include <rz_util.h>
#include <rz_asm.h>
#include <rz_lib.h>
#include "../arch/spc700/spc700dis.c"
static int disassemble(RzAsm *a, RzAsmOp *rz_op, const ut8 *buf, int len) {
size_t dlen = spc700_disas(&rz_op->buf_asm, a->pc, buf, len);
rz_op->size = dlen;
return (int)dlen;
}
RzAsmPlugin rz_asm_plugin_spc700 = {
.name = "spc700",
.desc = "spc700, snes' sound-chip",
.arch = "spc700",
.license = "LGPL3",
.bits = 16,
.endian = RZ_SYS_ENDIAN_LITTLE,
.disassemble = &disassemble,
};
#ifndef RZ_PLUGIN_INCORE
RZ_API RzLibStruct rizin_plugin = {
.type = RZ_LIB_TYPE_ASM,
.data = &rz_asm_plugin_spc700,
.version = RZ_VERSION
};
#endif