#include "types.h" Token tokens[MAX_TOK]; int tk_idx = 0; int pc = 0; long memory[MEM_SIZE]; int sp = 0; int bp = 0; Symbol locals[VAR_MAX]; int loc_cnt = 0; Func funcs[100]; int func_cnt = 0; NativeFuncDef native_funcs[100]; int native_func_cnt = 0; char *src_code; char str_pool[STR_POOL_SIZE]; int str_pool_idx = 0; long ax = 0; int return_flag = 0;