diff options
-rw-r--r-- | listbas.1 | 11 | ||||
-rw-r--r-- | listbas.c | 4 | ||||
-rw-r--r-- | listbas.rst | 9 | ||||
-rw-r--r-- | whichbas.1 | 2 | ||||
-rw-r--r-- | whichbas.rst | 2 |
5 files changed, 22 insertions, 6 deletions
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. -.TH "LISTBAS" 1 "2025-03-25" "0.2.2" "Urchlay's Atari 8-bit Tools" +.TH "LISTBAS" 1 "2025-03-26" "0.2.2" "Urchlay's Atari 8-bit Tools" .SH NAME listbas \- List the source of a tokenized Atari 8-bit BASIC program .SH SYNOPSIS @@ -45,6 +45,8 @@ escape sequences for inverse video and color syntax highlighting. \fBlistbas\fP supports several BASIC dialects used on the Atari. By default, the BASIC dialect is autodetected by running \fBwhichbas\fP(1) as an external process. To override this, see the \fB\-b\fP option, below. +.sp +Note: OSS Integer BASIC is \fInot\fP to be confused with Apple II Integer BASIC! .SH OPTIONS .SS BASIC options .INDENT 0.0 @@ -60,8 +62,11 @@ Atari BASIC. .B \fB\-ba+\fP OSS BASIC/A+. .TP -.B \fB\-bi\fP -OSS Integer BASIC (\fInot\fP to be confused with Apple II Integer BASIC!). +.B \fB\-bic\fP +OSS Integer BASIC, cartridge version. +.TP +.B \fB\-bid\fP +OSS Integer BASIC, disk version (uses different tokens from the cart). .TP .B \fB\-bt\fP Turbo BASIC XL. @@ -195,7 +195,9 @@ void get_line_range(const char *arg) { void print_help(void) { printf("Usage: %s [-a|-d|-m|-x|-U] [-B] [-i] [-l] [-u] [-n|-C] [-v] [-c *colors*] [-r *start,end* ] [-k] [-t] <inputfile>\n", self); - printf(" -b <XX>: set BASIC type. XX is: a = atari, t = turbo, i = int, xl, xe, a+.\n"); + printf(" -b <XX>: set BASIC type. XX is:\n"); + printf(" a = Atari 8K t = Turbo xl = Basic XL xe = Basic XE\n"); + printf(" a+ = OSS A+ ic = OSS Integer (cart) id = OSS Int (disk)\n"); printf(" -U: output ATASCII as Unicode/UTF-8 (this is the default).\n"); printf(" -a: output raw ATASCII.\n"); printf(" -d: use dots instead of Unicode/UTF-8.\n"); diff --git a/listbas.rst b/listbas.rst index 3e33490..6a377b2 100644 --- a/listbas.rst +++ b/listbas.rst @@ -27,6 +27,8 @@ escape sequences for inverse video and color syntax highlighting. default, the BASIC dialect is autodetected by running **whichbas**\(1) as an external process. To override this, see the **-b** option, below. +Note: OSS Integer BASIC is *not* to be confused with Apple II Integer BASIC! + OPTIONS ======= @@ -43,8 +45,11 @@ BASIC options **-ba+** OSS BASIC/A+. - **-bi** - OSS Integer BASIC (*not* to be confused with Apple II Integer BASIC!). + **-bic** + OSS Integer BASIC, cartridge version. + + **-bid** + OSS Integer BASIC, disk version (uses different tokens from the cart). **-bt** Turbo BASIC XL. @@ -40,6 +40,8 @@ XL, BASIC XE, BASIC/A+, OSS Integer BASIC, or Atari Microsoft BASIC programs and attempts to discover which BASIC is required to run each one. .sp +Note: OSS Integer BASIC is \fInot\fP to be confused with Apple II Integer BASIC! +.sp \fIinput\-file\fPs must be actual files. \fBwhichbas\fP can\(aqt read from standard input, because it seeks in the input file. .sp diff --git a/whichbas.rst b/whichbas.rst index 10669e7..f886c76 100644 --- a/whichbas.rst +++ b/whichbas.rst @@ -20,6 +20,8 @@ XL, BASIC XE, BASIC/A+, OSS Integer BASIC, or Atari Microsoft BASIC programs and attempts to discover which BASIC is required to run each one. +Note: OSS Integer BASIC is *not* to be confused with Apple II Integer BASIC! + *input-file*\s must be actual files. **whichbas** can't read from standard input, because it seeks in the input file. |