This commit is contained in:
e.gavrin
2014-07-07 11:55:10 +04:00
parent 2091bfb9e4
commit 8ab8adb031
6 changed files with 84 additions and 104 deletions
+7 -7
View File
@@ -24,16 +24,16 @@
#include "opcodes.h"
OPCODE __program[20];
OPCODE __program[128];
struct
{
int pos;
int *root_op_addr;
struct {
int pos;
opfunc func[LAST_OP];
int *root_op_addr;
} __int_data;
void gen_bytecode ();
void run_int ();
void gen_bytecode();
void run_int();
#endif /* INTERPRETER_H */