11 lines
349 B
C
11 lines
349 B
C
// SPDX-FileCopyrightText: 2021 deroad <wargio@libero.it>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef RZ_ASM_AVR_ASSEMBLER_H
|
|
#define RZ_ASM_AVR_ASSEMBLER_H
|
|
#include <rz_types.h>
|
|
#include <rz_util.h>
|
|
|
|
ut32 avr_assembler(const char *input, st32 input_size, ut8 *output, st32 output_size, ut64 pc, bool be);
|
|
|
|
#endif /* RZ_ASM_AVR_ASSEMBLER_H */
|