15 lines
379 B
C
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
|