diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-25 01:01:12 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-25 01:01:12 -0400 |
commit | ffada20937251cc163f7b51b8b16f99f3d1dfe4b (patch) | |
tree | 56b5079491ae753a1dddec84e6c7f04294bb9e6b /listbas.c | |
parent | 6366242989d797ace5590e4f792192bc60d67d3f (diff) | |
download | bw-atari8-tools-ffada20937251cc163f7b51b8b16f99f3d1dfe4b.tar.gz |
listbas: fix printing TO in OSS Integer BASIC.
Diffstat (limited to 'listbas.c')
-rw-r--r-- | listbas.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -941,7 +941,12 @@ CALLBACK(print_op) { print_string(pos + 2, program[pos + 1]); return; case OP_EOL: - return; + /* in Integer BASIC, this token is TO */ + if(bas_type != B_INT) return; + break; + case 0x13: + /* in Integer BASIC, this is the real end-of-line token */ + if(bas_type == B_INT) return; default: break; } |