aboutsummaryrefslogtreecommitdiff
path: root/listbas.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-25 01:01:12 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-25 01:01:12 -0400
commitffada20937251cc163f7b51b8b16f99f3d1dfe4b (patch)
tree56b5079491ae753a1dddec84e6c7f04294bb9e6b /listbas.c
parent6366242989d797ace5590e4f792192bc60d67d3f (diff)
downloadbw-atari8-tools-ffada20937251cc163f7b51b8b16f99f3d1dfe4b.tar.gz
listbas: fix printing TO in OSS Integer BASIC.
Diffstat (limited to 'listbas.c')
-rw-r--r--listbas.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/listbas.c b/listbas.c
index acff568..99b80fc 100644
--- a/listbas.c
+++ b/listbas.c
@@ -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;
}