aboutsummaryrefslogtreecommitdiff
path: root/whichbas.1
blob: baead4f80454fcb637014163c409d04926e16eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
.\" Man page generated from reStructuredText.
.
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "WHICHBAS" 1 "2024-07-09" "0.2.1" "Urchlay's Atari 8-bit Tools"
.SH NAME
whichbas \- Determine BASIC variant of a tokenized Atari 8-bit program
.SH SYNOPSIS
.sp
whichbas [\-v] \fIinput\-file\fP
.SH DESCRIPTION
.sp
\fBwhichbas\fP reads a tokenized Atari 8\-bit BASIC, Turbo BASIC,
BASIC XL, BASIC XE, or Atari Microsoft BASIC program and attempts to
discover which BASIC is required to run it.
.sp
\fIinput\-file\fP must be an actual file. \fBwhichbas\fP can\(aqt read from
standard input, because it seeks in the input file.
.SH OPTIONS
.SS Detection Options
.INDENT 0.0
.TP
.B \fB\-s\fP
Script (or silent) mode. Instead of printing a human\-readable
name like "Turbo BASIC XL" or "OSS BASIC XE" to stdout, \fBwhichbas\fP
will print nothing on standard output, but will exit with a status
indicating what it detected. The caller can check the return status
(e.g. the \fB$?\fP variable in Bourne/POSIX shells, or \fBERRORLEVEL\fP
in MS\-DOS or Windows). See \fBEXIT STATUS\fP, below.
.TP
.B \fB\-k\fP
Keep going. The default is to stop looking at the program if the
BASIC type gets narrowed down to either Turbo BASIC or BASIC XE.
This option also enables \fB\-v\fP (verbose). It\(aqs really only useful
for testing, if you\(aqre hacking on \fBwhichbas\fP itself.
.UNINDENT
.SS General Options
.INDENT 0.0
.TP
.B \fB\-\-help\fP
Print usage message and exit.
.TP
.B \fB\-\-version\fP
Print version number and exit.
.TP
.B \fB\-v\fP
Verbose operation. When displaying a number in verbose mode, it will
be prefixed with \fI$\fP if it\(aqs in hex, or no prefix for decimal.
.UNINDENT
.SH NOTES
.sp
Atari BASIC programs are detected \fIalmost\fP 100% reliably. See \fBBUGS\fP, below,
for the gory details.
.sp
Turbo BASIC, BASIC XL, and BASIC XE are all supersets of Atari BASIC.
If you wrote a program using one of them, but didn\(aqt use any of the
extra commands or functions, the result is still an Atari BASIC program.
Likewise, if you wrote a program using BASIC XE, but only used the
commands/functions it has in common with BASIC XL, it would be
detected as BASIC XL.
.sp
There are two types of BASIC XE programs: regular and \fIEXTEND\fPed. The
extended type is detected 100% reliably, because the first byte of the
file changes from \fB$00\fP to \fB$DD\fP\&. Non\-extended programs are only
identified as BASIC XE if they use any of the extra commands BASIC XE
adds to those found in BASIC XL.
.sp
Detection of Turbo vs. BXL/BXE isn\(aqt 100% reliable, and probably
never will be. There\(aqs too much overlap between the sets of extra
tokens added by each. Programs that don\(aqt use very many of the extra
functions provided by Turbo/BXL/BXE may show up as "Either Turbo BASIC XL
or OSS BASIC XE".
.sp
Atari Microsoft BASIC is detected by checking that the first two
bytes of the file are not zero, and that the last 3 are zero. This
may result in false positives (files that aren\(aqt BASIC programs at
all might show up as Microsoft). Also, no distinction is made between
Atari MS BASIC 1.0 and 2.0.
.sp
Various non\-BASIC files are detected (including Mac/65 source,
ELF binaries, etc) as a convenience, but I wouldn\(aqt rely on
\fBwhichbas\fP\(aqs non\-BASIC file type detection if I were you.
.SH LIMITATIONS
.sp
\fBwhichbas\fP knows nothing about other BASICs such as Frost BASIC,
BASIC/A+, Altirra BASIC...
.SH BUGS
.sp
It\(aqs possible to get a BASIC XL/XE program to misdetect as Atari BASIC
by writing a program that does these things:
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.IP \(bu 2
Dimensions a string array with a number of elements that isn\(aqt just a
numeric constant or numeric variable (e.g. \fIDIM A$(2+2,10)\fP or
\fIDIM A$(I*2,10)\fP). The code that detects a 2D string \fIDIM\fP command
can only handle simple cases like \fIDIM A$(10,10)\fP or \fIDIM A$(I,10)\fP\&.
It doesn\(aqt actually matter if the 2nd argument is a fancy expression,
though.
.IP \(bu 2
Does \fInot\fP actually \fIuse\fP the string array variable by assigning to
it or reading a value from it. String array accesses in BASIC XL/XE
are reliably detected because they require a semicolon after the
first number, even if there isn\(aqt a 2nd number. Example: \fI? A$(2;)\fP
prints the 2nd element of the \fIA$\fP string array. If it were written
as \fI? A$(2)\fP, but \fIA$\fP is a string array (not a regular string),
BASIC XL/XE would give an \fIError 40\fP (string type mismatch) at
runtime.
.UNINDENT
.UNINDENT
.UNINDENT
.sp
The good news is, such a program will still work fine in Atari BASIC.
Believe it or not, it\(aqs true.
.SH EXIT STATUS
.sp
Without the \fB\-s\fP option, exit status is 0 for success, non\-zero for
failure.
.sp
With the \fB\-s\fP option, the exit status is:
.INDENT 0.0
.TP
.B \fB0\fP
Not used with \fB\-s\fP\&.
.TP
.B \fB1\fP or \fB2\fP
Error reading file. Error message will be printed on standard error.
.TP
.B \fB3\fP
Atari BASIC detected.
.TP
.B \fB4\fP
Turbo BASIC detected.
.TP
.B \fB5\fP
OSS BASIC XL detected.
.TP
.B \fB6\fP
Non\-EXTENDed OSS BASIC XE detected.
.TP
.B \fB7\fP
Turbo BASIC or BASIC XL (undecided which).
.TP
.B \fB8\fP
Turbo BASIC or non\-EXTENDed BASIC XE (undecided which).
.TP
.B \fB9\fP
Turbo BASIC, BASIC XL, or non\-EXTENDed BASIC XE (undecided which).
.TP
.B \fB10\fP
Unknown Atari BASIC derivative (not Atari BASIC, but not
Turbo/BXL/BXE either).
.TP
.B \fB11\fP
Atari Microsoft BASIC detected.
.TP
.B \fB12\fP
EXTENDed OSS BASIC XE detected.
.TP
.B \fB13\fP
Compiled Turbo BASIC detected.
.TP
.B \fB64\fP
None of the above; not BASIC.
.UNINDENT
.sp
In the future, more exit codes may be defined (in the range \fB14\fP to
\fB63\fP), but the existing ones will not change.
.SH COPYRIGHT
.sp
WTFPL. See \fI\%http://www.wtfpl.net/txt/copying/\fP for details.
.SH AUTHOR
.INDENT 0.0
.IP B. 3
Watson <\fI\%urchlay@slackware.uk\fP>; Urchlay on irc.libera.chat \fI##atari\fP\&.
.UNINDENT
.SH SEE ALSO
.sp
\fBa8cat\fP(1),
\fBa8eol\fP(1),
\fBa8xd\fP(1),
\fBatr2xfd\fP(1),
\fBatrsize\fP(1),
\fBaxe\fP(1),
\fBblob2c\fP(1),
\fBblob2xex\fP(1),
\fBcart2xex\fP(1),
\fBcxrefbas\fP(1),
\fBdasm2atasm\fP(1),
\fBdumpbas\fP(1),
\fBf2toxex\fP(1),
\fBfenders\fP(1),
\fBlistbas\fP(1),
\fBprotbas\fP(1),
\fBrenumbas\fP(1),
\fBrom2cart\fP(1),
\fBunmac65\fP(1),
\fBunprotbas\fP(1),
\fBvxrefbas\fP(1),
\fBwhichbas\fP(1),
\fBxex1to2\fP(1),
\fBxexamine\fP(1),
\fBxexcat\fP(1),
\fBxexsplit\fP(1),
\fBxfd2atr\fP(1),
\fBxex\fP(5),
\fBatascii\fP(7).
.sp
Any good Atari 8\-bit book: \fIDe Re Atari\fP, \fIThe Atari BASIC  Reference
Manual\fP,  the  \fIOS Users\(aq Guide\fP, \fIMapping the Atari\fP, etc.
.\" Generated by docutils manpage writer.
.