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

32 lines
761 B
C

// SPDX-FileCopyrightText: 2022 wingdeans <wingdeans@protonmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_asm.h>
#include "cil/cil_dis.h"
static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
CILOp cilop = { { { 0 } } };
if (cil_dis(&cilop, buf, len)) {
return 0;
}
rz_strbuf_copy(&op->buf_asm, &cilop.strbuf);
rz_strbuf_fini(&cilop.strbuf);
return op->size = cilop.size;
}
RzAsmPlugin rz_asm_plugin_cil = {
.name = "cil",
.arch = "cil",
.desc = ".NET Common Intermediate Language",
.license = "LGPL3",
.bits = 16 | 32 | 64,
.disassemble = &disassemble,
};
#ifndef RZ_PLUGIN_INCORE
RZ_API RzLibStruct rizin_plugin = {
.type = RZ_LIB_TYPE_ASM,
.data = &rz_asm_plugin_cil,
.version = RZ_VERSION
};
#endif