aboutsummaryrefslogtreecommitdiff
path: root/abas2html
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-26 03:21:30 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-26 03:21:30 -0400
commit5c791b4155162f74413b9e49464d24f830c68c6c (patch)
tree561e74ca7319103eb6e699e0d41e3802d6a0cb0b /abas2html
parentb96776596e9763e7fb4be1abb0c3ca4717334fb1 (diff)
downloadbw-atari8-tools-5c791b4155162f74413b9e49464d24f830c68c6c.tar.gz
abas2html: update for separate integer disk/cart versions.
Diffstat (limited to 'abas2html')
-rwxr-xr-xabas2html8
1 files changed, 6 insertions, 2 deletions
diff --git a/abas2html b/abas2html
index e2f82ee..9e30874 100755
--- a/abas2html
+++ b/abas2html
@@ -29,6 +29,8 @@ Usage: $SELF -a<aha-options> -b<basver> -m input.bas <output.html>
-bt Turbo BASIC XL
-bxl OSS BASIC XL
-bxe OSS BASIC XE
+ -bic OSS Integer BASIC (cartridge version)
+ -bid OSS Integer BASIC (disk version)
-m monochrome: disable color syntax highlighting.
if output filename is missing, it defaults to the input filename, with
the extension changed to .html (e.g. FOO.BAS => FOO.html).
@@ -78,13 +80,15 @@ if [ "$BASVER" = "" ]; then
6|12) BASVER="xe" ;;
11) BASVER="m" ;;
14) BASVER="a+" ;;
+ 15) BASVER="ic" ;;
+ 16) BASVER="id" ;;
*) die "can't detect BASIC dialect; use -b<xx> option" ;;
esac
fi
case "$BASVER" in
- m) LISTER=listamsb ; BASVER="" ;;
- a|t|xl|xe|a+) LISTER=listbas ; BASVER="-b$BASVER" ;;
+ m) LISTER=listamsb ; BASVER="" ;;
+ a|t|xl|xe|a+|id|ic) LISTER=listbas ; BASVER="-b$BASVER" ;;
*) die "$BASVER not a valid BASIC dialect" ;;
esac