mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-16 17:57:23 +00:00
c83d0e0c5f
* implement ppc assembler plugin * reuse code * update .travis.yml & Dockerfile * support arm.as big endian
10 lines
229 B
C
10 lines
229 B
C
#ifndef BINUTILS_AS_H
|
|
#define BINUTILS_AS_H
|
|
|
|
#include <r_types.h>
|
|
#include <r_asm.h>
|
|
|
|
int binutils_assemble(RAsm *a, RAsmOp *op, const char *buf, const char *as, const char *env, const char *header, const char *cmd_opt);
|
|
|
|
#endif
|