aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-08 20:37:57 -0500
committerB. Watson <urchlay@slackware.uk>2025-03-08 20:37:57 -0500
commit1a45a059148e15e540312b2b6bd527245e809cc4 (patch)
treed65ec0d0aa54662aa194ae81b9270b029611a017
parent5dc8c49ae0d7ba6c07607fea4fa8e9e8f128eecc (diff)
downloadbw-atari8-tools-1a45a059148e15e540312b2b6bd527245e809cc4.tar.gz
listamsb: fix comment.
-rw-r--r--listamsb.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/listamsb.c b/listamsb.c
index 4d3be35..7195443 100644
--- a/listamsb.c
+++ b/listamsb.c
@@ -42,9 +42,10 @@
/* there should never be a valid line of BASIC longer than MAX_LINE_LEN
bytes, since there would be no way to enter it in the editor. AMSB
- uses the standard E: device, which limits you to 4 screen lines, or
- max 120 bytes. there *cannot* be a line longer than MAX_LINE_LEN_HARD,
- because AMSB would crash when you try to LOAD such a program. */
+ uses the standard E: device, which limits you to 3 40-column screen
+ lines, or max 120 bytes (after POKE 82,0). there *cannot* be a line
+ longer than MAX_LINE_LEN_HARD, because AMSB would crash when you
+ try to LOAD such a program. */
#define MAX_LINE_LEN 0x80
#define MAX_LINE_LEN_HARD 0xff