aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bas.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/bas.c b/bas.c
index 4bad870..c729e19 100644
--- a/bas.c
+++ b/bas.c
@@ -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);