B5500: Move extern declarations to b5500_defs.h

This commit is contained in:
Mark Pizzolato 2018-05-23 20:10:13 -07:00
parent ef94dcbe93
commit ed1a6f313e
2 changed files with 3 additions and 3 deletions

View file

@ -3958,9 +3958,7 @@ cpu_show_hist(FILE * st, UNIT * uptr, int32 val, CONST void *desc)
t_stat r;
t_value sim_eval;
struct InstHistory *h;
extern void print_opcode(FILE * ofile, t_value val, t_opcode *);
extern t_opcode word_ops[1], char_ops[1];
char flags[] = "ABCNSMV";
static const char flags[] = "ABCNSMV";
if (hst_lnt == 0)
return SCPE_NOFNC; /* enabled? */

View file

@ -72,6 +72,8 @@ typedef struct _opcode
}
t_opcode;
extern void print_opcode(FILE * ofile, t_value val, t_opcode *);
extern t_opcode word_ops[], char_ops[];
t_stat chan_reset(DEVICE *);
t_stat chan_boot(t_uint64);