aboutsummaryrefslogtreecommitdiff
path: root/whichbas.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-26 03:00:48 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-26 03:00:48 -0400
commit67b67eebb77512ffac50e8650cfc9f30913869fd (patch)
tree3c8093d75b45fdcdb734d59042e82014c1a7a2e5 /whichbas.c
parente45e1eefc9d7abc526d28710e6a0298c525c80fb (diff)
downloadbw-atari8-tools-67b67eebb77512ffac50e8650cfc9f30913869fd.tar.gz
whichbas and listbas: distinguish between Integer BASIC disk and cart versions.
Diffstat (limited to 'whichbas.c')
-rw-r--r--whichbas.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/whichbas.c b/whichbas.c
index 27044b5..eae9903 100644
--- a/whichbas.c
+++ b/whichbas.c
@@ -1030,15 +1030,12 @@ void detect_foreign(void) {
if(c == EOF || d == EOF)
die("File is too short to be a BASIC program of any kind.");
- if(c == 0 && d == 0) {
+ if((c == 0 || c == 0x77) && d == 0) {
/* This is why we can't read from stdin. */
rewind(input_file);
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);
@@ -1224,6 +1221,19 @@ CALLBACK(check_aplus_cmd) {
last_cmd = tok;
}
+void check_oss_int(void) {
+ if(lomem != 0x77) return;
+ switch(save_command_tok) {
+ case 0x19: /* SAVE */
+ case 0x33: /* CSAVE */
+ foreign("OSS Integer BASIC (disk)", SRET_OSSINT_DISK);
+ break;
+ default:
+ foreign("OSS Integer BASIC (cartridge)", SRET_OSSINT_DISK);
+ break;
+ }
+}
+
void check_aplus(void) {
allow_hex_const = 1;
@@ -1250,6 +1260,7 @@ int main(int argc, char **argv) {
readfile();
parse_header();
+ check_oss_int();
check_variables();
check_aplus();