From e1e42bb3c5db65e433e1800579d85b526a28118e Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 24 Mar 2025 15:31:38 -0400 Subject: whichbas: add detection for OSS Integer BASIC. --- whichbas.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'whichbas.c') 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); -- cgit v1.2.3