1 /* MIX simulator, copyright 1994 by Darius Bacon */
2 #ifndef RUN_H
3 #define RUN_H
4 
5 #include "mix.h"
6 
7 extern Cell memory[];
8 
9 void set_initial_state(void);
10 void print_CPU_state(void);
11 void run(void);
12 
13 #endif
14