11 lines
244 B
C
11 lines
244 B
C
// SPDX-FileCopyrightText: 2019 hmht
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef ASSEMBLE_8051_H
|
|
#define ASSEMBLE_8051_H
|
|
|
|
#include <rz_asm.h>
|
|
|
|
int assemble_8051(RzAsm *a, RzAsmOp *op, char const *user_asm);
|
|
|
|
#endif /* ASSEMBLE_8051_H */
|