rizin/librz/arch/isa/dcpu16/dcpu16.h
wargio d47ceedbd3 Merge rz_asm and rz_analysis into one library but keep deprecated apis.
The tms320c64x has been merged into tms320.
2024-03-07 18:38:49 +08:00

15 lines
379 B
C

// SPDX-FileCopyrightText: 2012 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef _INCLUDE_DCPU16_H_
#define _INCLUDE_DCPU16_H_
#ifndef ut8
#define ut8 unsigned char
#define ut16 unsigned short
#endif
int dcpu16_disasm(char *out, size_t size_out, const ut16 *inp, int len, int *cost);
int dcpu16_assemble(ut8 *out, const char *unoline);
#endif