diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-24 15:31:38 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-24 15:31:38 -0400 |
commit | e1e42bb3c5db65e433e1800579d85b526a28118e (patch) | |
tree | cbed9d3406711eb1ca35c31a108b36c88c9eaf51 /whichbas.c | |
parent | 9e70bd4086c2695722844cfaf7f0cccc09fb0c98 (diff) | |
download | bw-atari8-tools-e1e42bb3c5db65e433e1800579d85b526a28118e.tar.gz |
whichbas: add detection for OSS Integer BASIC.
Diffstat (limited to 'whichbas.c')
-rw-r--r-- | whichbas.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |