dect
/
asl
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asl/as1750.h

19 lines
513 B
C

/* as1750.h -- exports of as1750.c */
extern void init_as1750 ();
extern unsigned short as1750 (char *operation,
int n_operands, char *operand[]);
#ifdef AS1750
extern void add_word (ushort word);
extern void add_reloc (symbol_t sym);
extern char *get_num (char *s, int *outnum);
extern char *get_sym_num (char *s, int *outnum);
extern status parse_addr (char *s);
extern status error (char *layout, ...);
#else /* ASL */
#define OKAY 0
#define ERROR 0xFFFD
#define NO_OPCODE 0xFFFE
#endif