diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-08 20:37:57 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-08 20:37:57 -0500 |
commit | 1a45a059148e15e540312b2b6bd527245e809cc4 (patch) | |
tree | d65ec0d0aa54662aa194ae81b9270b029611a017 | |
parent | 5dc8c49ae0d7ba6c07607fea4fa8e9e8f128eecc (diff) | |
download | bw-atari8-tools-1a45a059148e15e540312b2b6bd527245e809cc4.tar.gz |
listamsb: fix comment.
-rw-r--r-- | listamsb.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |