1 /*
2   Interp
3   Main interpreter loop and opcode dispatch
4   JBS 15 June 1994
5 */
6 
7 #ifndef _INTERP_
8 
9 #define _INTERP_
10 
11 #include "types.h"
12 
13 void init_interpreter(bool);
14 void execute_opcode(void);
15 
16 #endif
17