diff options
-rw-r--r-- | bas.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -351,6 +351,11 @@ void walk_code(unsigned int startlineno, unsigned int endlineno) { tok = program[pos]; switch(tok) { case OP_NUMCONST: + CALL(on_exp_token); + pos++; + CALL(on_num_const); + pos += 6; + break; case OP_HEXCONST: if(allow_hex_const) { CALL(on_exp_token); |