aboutsummaryrefslogtreecommitdiff
path: root/bas.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-25 00:16:41 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-25 00:16:41 -0400
commit6366242989d797ace5590e4f792192bc60d67d3f (patch)
tree86b31205a0f9e0a4eb1561e26c7eb17b047fad85 /bas.c
parent8f566e4eb05f25a86435aa3270b96b53be42ef31 (diff)
downloadbw-atari8-tools-6366242989d797ace5590e4f792192bc60d67d3f.tar.gz
listbas: improve support for OSS Integer BASIC.
Diffstat (limited to 'bas.c')
-rw-r--r--bas.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/bas.c b/bas.c
index 6973876..c582c2e 100644
--- a/bas.c
+++ b/bas.c
@@ -22,15 +22,16 @@ int verbose = 0;
in sync with the token stream. */
int allow_hex_const = 0;
-/* BASIC/A+ uses the same cmd tokens for REM and DATA that BASIC does,
- but not for the ERROR- token. Unfortunately bas.c needs to know it's
- an A+ program so it can handle this token correctly. */
-int aplus_errtok_hack = 0;
-
/* BASIC XL token 0x5a is followed by a single "subtoken", this skips it. */
int bxl_exttok_hack = 0;
-int numconst_size = 6; /* 2 for OSS Integer BASIC */
+/* 2 for OSS Integer BASIC, 6 for the BCD constants in all others. */
+int numconst_size = 6;
+
+/* BASIC/A+ and OSS Integer use the same cmd tokens for REM and DATA that
+ BASIC does, but not for the ERROR- token. bas.c needs to know what
+ token is ERROR- so it can handle it correctly. */
+int error_token = CMD_ERROR;
unsigned short lomem;
unsigned short vntp;
@@ -381,9 +382,8 @@ void walk_code(unsigned int startlineno, unsigned int endlineno) {
CALL(on_cmd_token);
tok = program[pos];
- if((tok == CMD_REM) || (tok == CMD_DATA) || /* same in A+ */
- (aplus_errtok_hack && tok == 0x53) || /* A+'s ERROR- */
- (!aplus_errtok_hack && tok == CMD_ERROR))
+ if((tok == CMD_REM) || (tok == CMD_DATA) || /* same in all */
+ tok == error_token)
{
pos++;
CALL(on_text);