* Remove RzAsm struct from the public APIs * Forbid plugins from changing RzAsm contents * Implement archinfo for RX * Rename archinfo for SH * Fix tests to use the new output
12 lines
349 B
C
12 lines
349 B
C
// SPDX-FileCopyrightText: 2009-2020 pancake <pancake@nopcode.org>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef BINUTILS_AS_H
|
|
#define BINUTILS_AS_H
|
|
|
|
#include <rz_types.h>
|
|
#include <rz_asm.h>
|
|
|
|
int binutils_assemble(const RzAsm *a, RzAsmOp *op, const char *buf, const char *as, const char *env, const char *header, const char *cmd_opt);
|
|
|
|
#endif
|