12 lines
258 B
C
12 lines
258 B
C
#ifndef _INCLUDE_DCPU16_H_
|
|
#define _INCLUDE_DCPU16_H_
|
|
|
|
#ifndef ut8
|
|
#define ut8 unsigned char
|
|
#define ut16 unsigned short
|
|
#endif
|
|
|
|
int dcpu16_disasm (char *out, const ut16* inp, int len, int *cost);
|
|
int dcpu16_assemble (ut8* out, const char* unoline);
|
|
|
|
#endif
|