aboutsummaryrefslogtreecommitdiff
path: root/whichbas.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-24 15:31:38 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-24 15:31:38 -0400
commite1e42bb3c5db65e433e1800579d85b526a28118e (patch)
treecbed9d3406711eb1ca35c31a108b36c88c9eaf51 /whichbas.c
parent9e70bd4086c2695722844cfaf7f0cccc09fb0c98 (diff)
downloadbw-atari8-tools-e1e42bb3c5db65e433e1800579d85b526a28118e.tar.gz
whichbas: add detection for OSS Integer BASIC.
Diffstat (limited to 'whichbas.c')
-rw-r--r--whichbas.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/whichbas.c b/whichbas.c
index 1ed21a4..27044b5 100644
--- a/whichbas.c
+++ b/whichbas.c
@@ -1036,6 +1036,9 @@ void detect_foreign(void) {
return;
}
+ if(c == 0x77 && d == 0x00)
+ foreign("OSS Integer BASIC", SRET_OSSINT);
+
if(c == 0xfb && d == 0xc2)
foreign("Compiled Turbo BASIC XL", SRET_COMPILED_TURBO);