Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199801_2.adf » Regulars2 » StarInfo/Fletcher/!Setup/Docs/Manual
StarInfo/Fletcher/!Setup/Docs/Manual
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199801_2.adf » Regulars2 |
Filename: | StarInfo/Fletcher/!Setup/Docs/Manual |
Read OK: | ✔ |
File size: | 0DA1 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
---- Setup ---- Instructions for use -------------------- I'm assuming that you're a programmer, so I'll keep this brief and to the point, in the hope you won't need an idiots guide. You should read the ReadMe file for additional information... To create a setup for your own application, you need to alter the script file contained within the '!Setup' directory, and replace the files within the '!Setup.Files' directory. While setting up, two system variables can be used by you to identify the location of your files (most useful for COPY): Setup$Dir - the directory in which Files can currently be found (may change if disc is changed) tmp$dir - the directory that you are installing to. (Initially undefined, until you use GETDIR) The !Setup.Files directory contains all the files your program may want to install (well, maybe not quite all, as you can use more than one disc). Below the Files directory, you must keep your readme files, your disc ID files and two directories: Program - contains all the program files System - contains updates to System resources, like !System, !LibStore2 (coming soon!!) and so on. The script file contains a list of commands, the syntax and brief description for which is contained in the 'Commands' file. Some points which may need explaination are: If you do not include NAME at the beginning of your program, it looks horrible. You can change the NAME at a later point if you want to. CHOICE, OPTIONS, etc - the first parameter is the number of choices. This is followed by each of the choices. (It appears you can't use a space in these - but ALT+Space will provide you with a hard space), and then by a variable number, and finally by the comment. Variable number - simply a number. There are 256 variables, numbered from 0-255. IF - not as advanced as BASICs IF! Uses EVAL, though, this means that: IF 1 = 2 GOTO Fliggle - If variable 1 is equal to 2 then goto fliggle, a label. Labels - lines beginning with :. Anything after the : is the label text. Comments - lines beginning with | are ignored. (Cue for RISC PC owners to spend half a century attempting to find the | character. It really does exist on your keyboard. I may write a patch to confuse more people, if I ever get a RISC PC) SWAPDISC - works by using a file that 'tags' the appropriate disc. This means that if the various discs are put together (eg Low-Density into High-Density) - the thing asks you to swap discs only when need be. The tag file is stored in Files, and any extra discs should contain the Files directory (which should contain all the appropriate files to continue from where we left off). OPTIONS,RADIOS - <var num> has the option(s) chosen in binary form - i.e. %11000 would mean options 3 & 4 were selected. This method means that (<var num> = 1) IF 1 AND 1<<1 would test for option 1, IF 1 AND 1<<2 would test for option 2 and so on. Hmm... Think that that should have clarified everything. If you are still confused, you could try... Contacting me ------------- If you want to use this for commercial purposes (hey! it would be nice to have a consistant user interface for program installation - think about it), have a query, wish to report a bug (!) or are merely feeling lonely, I can be contacted at: E-mail: Arcade as 'Ahunter' Snail-mail: 18 Warren Close, Elmswell, Bury St. Edmunds, Suffolk, IP30 9DS. I'll try to answer all letters/messages, in time... Coming soon - LibStore 2 - stupid name, great BASIC libraries...
00000000 2d 2d 2d 2d 20 53 65 74 75 70 20 2d 2d 2d 2d 0a |---- Setup ----.| 00000010 0a 49 6e 73 74 72 75 63 74 69 6f 6e 73 20 66 6f |.Instructions fo| 00000020 72 20 75 73 65 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |r use.----------| 00000030 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 0a 49 27 6d 20 |----------..I'm | 00000040 61 73 73 75 6d 69 6e 67 20 74 68 61 74 20 79 6f |assuming that yo| 00000050 75 27 72 65 20 61 20 70 72 6f 67 72 61 6d 6d 65 |u're a programme| 00000060 72 2c 20 73 6f 20 49 27 6c 6c 20 6b 65 65 70 20 |r, so I'll keep | 00000070 74 68 69 73 20 62 72 69 65 66 20 61 6e 64 20 74 |this brief and t| 00000080 6f 20 74 68 65 0a 70 6f 69 6e 74 2c 20 69 6e 20 |o the.point, in | 00000090 74 68 65 20 68 6f 70 65 20 79 6f 75 20 77 6f 6e |the hope you won| 000000a0 27 74 20 6e 65 65 64 20 61 6e 20 69 64 69 6f 74 |'t need an idiot| 000000b0 73 20 67 75 69 64 65 2e 0a 59 6f 75 20 73 68 6f |s guide..You sho| 000000c0 75 6c 64 20 72 65 61 64 20 74 68 65 20 52 65 61 |uld read the Rea| 000000d0 64 4d 65 20 66 69 6c 65 20 66 6f 72 20 61 64 64 |dMe file for add| 000000e0 69 74 69 6f 6e 61 6c 20 69 6e 66 6f 72 6d 61 74 |itional informat| 000000f0 69 6f 6e 2e 2e 2e 0a 0a 54 6f 20 63 72 65 61 74 |ion.....To creat| 00000100 65 20 61 20 73 65 74 75 70 20 66 6f 72 20 79 6f |e a setup for yo| 00000110 75 72 20 6f 77 6e 20 61 70 70 6c 69 63 61 74 69 |ur own applicati| 00000120 6f 6e 2c 20 79 6f 75 20 6e 65 65 64 20 74 6f 20 |on, you need to | 00000130 61 6c 74 65 72 20 74 68 65 20 73 63 72 69 70 74 |alter the script| 00000140 0a 66 69 6c 65 20 63 6f 6e 74 61 69 6e 65 64 20 |.file contained | 00000150 77 69 74 68 69 6e 20 74 68 65 20 27 21 53 65 74 |within the '!Set| 00000160 75 70 27 20 64 69 72 65 63 74 6f 72 79 2c 20 61 |up' directory, a| 00000170 6e 64 20 72 65 70 6c 61 63 65 20 74 68 65 20 66 |nd replace the f| 00000180 69 6c 65 73 0a 77 69 74 68 69 6e 20 74 68 65 20 |iles.within the | 00000190 27 21 53 65 74 75 70 2e 46 69 6c 65 73 27 20 64 |'!Setup.Files' d| 000001a0 69 72 65 63 74 6f 72 79 2e 0a 0a 57 68 69 6c 65 |irectory...While| 000001b0 20 73 65 74 74 69 6e 67 20 75 70 2c 20 74 77 6f | setting up, two| 000001c0 20 73 79 73 74 65 6d 20 76 61 72 69 61 62 6c 65 | system variable| 000001d0 73 20 63 61 6e 20 62 65 20 75 73 65 64 20 62 79 |s can be used by| 000001e0 20 79 6f 75 20 74 6f 20 69 64 65 6e 74 69 66 79 | you to identify| 000001f0 20 74 68 65 0a 6c 6f 63 61 74 69 6f 6e 20 6f 66 | the.location of| 00000200 20 79 6f 75 72 20 66 69 6c 65 73 20 28 6d 6f 73 | your files (mos| 00000210 74 20 75 73 65 66 75 6c 20 66 6f 72 20 43 4f 50 |t useful for COP| 00000220 59 29 3a 0a 0a 53 65 74 75 70 24 44 69 72 20 2d |Y):..Setup$Dir -| 00000230 20 74 68 65 20 64 69 72 65 63 74 6f 72 79 20 69 | the directory i| 00000240 6e 20 77 68 69 63 68 20 46 69 6c 65 73 20 63 61 |n which Files ca| 00000250 6e 20 63 75 72 72 65 6e 74 6c 79 20 62 65 20 66 |n currently be f| 00000260 6f 75 6e 64 20 28 6d 61 79 0a 63 68 61 6e 67 65 |ound (may.change| 00000270 20 69 66 20 64 69 73 63 20 69 73 20 63 68 61 6e | if disc is chan| 00000280 67 65 64 29 0a 74 6d 70 24 64 69 72 20 2d 20 74 |ged).tmp$dir - t| 00000290 68 65 20 64 69 72 65 63 74 6f 72 79 20 74 68 61 |he directory tha| 000002a0 74 20 79 6f 75 20 61 72 65 20 69 6e 73 74 61 6c |t you are instal| 000002b0 6c 69 6e 67 20 74 6f 2e 20 28 49 6e 69 74 69 61 |ling to. (Initia| 000002c0 6c 6c 79 0a 75 6e 64 65 66 69 6e 65 64 2c 20 75 |lly.undefined, u| 000002d0 6e 74 69 6c 20 79 6f 75 20 75 73 65 20 47 45 54 |ntil you use GET| 000002e0 44 49 52 29 0a 0a 54 68 65 20 21 53 65 74 75 70 |DIR)..The !Setup| 000002f0 2e 46 69 6c 65 73 20 64 69 72 65 63 74 6f 72 79 |.Files directory| 00000300 20 63 6f 6e 74 61 69 6e 73 20 61 6c 6c 20 74 68 | contains all th| 00000310 65 20 66 69 6c 65 73 20 79 6f 75 72 20 70 72 6f |e files your pro| 00000320 67 72 61 6d 20 6d 61 79 20 77 61 6e 74 0a 74 6f |gram may want.to| 00000330 20 69 6e 73 74 61 6c 6c 20 28 77 65 6c 6c 2c 20 | install (well, | 00000340 6d 61 79 62 65 20 6e 6f 74 20 71 75 69 74 65 20 |maybe not quite | 00000350 61 6c 6c 2c 20 61 73 20 79 6f 75 20 63 61 6e 20 |all, as you can | 00000360 75 73 65 20 6d 6f 72 65 20 74 68 61 6e 20 6f 6e |use more than on| 00000370 65 20 64 69 73 63 29 2e 0a 42 65 6c 6f 77 20 74 |e disc)..Below t| 00000380 68 65 20 46 69 6c 65 73 20 64 69 72 65 63 74 6f |he Files directo| 00000390 72 79 2c 20 79 6f 75 20 6d 75 73 74 20 6b 65 65 |ry, you must kee| 000003a0 70 20 79 6f 75 72 20 72 65 61 64 6d 65 20 66 69 |p your readme fi| 000003b0 6c 65 73 2c 20 79 6f 75 72 20 64 69 73 63 20 49 |les, your disc I| 000003c0 44 0a 66 69 6c 65 73 20 61 6e 64 20 74 77 6f 20 |D.files and two | 000003d0 64 69 72 65 63 74 6f 72 69 65 73 3a 0a 0a 50 72 |directories:..Pr| 000003e0 6f 67 72 61 6d 20 2d 20 63 6f 6e 74 61 69 6e 73 |ogram - contains| 000003f0 20 61 6c 6c 20 74 68 65 20 70 72 6f 67 72 61 6d | all the program| 00000400 20 66 69 6c 65 73 0a 53 79 73 74 65 6d 20 2d 20 | files.System - | 00000410 63 6f 6e 74 61 69 6e 73 20 75 70 64 61 74 65 73 |contains updates| 00000420 20 74 6f 20 53 79 73 74 65 6d 20 72 65 73 6f 75 | to System resou| 00000430 72 63 65 73 2c 20 6c 69 6b 65 20 21 53 79 73 74 |rces, like !Syst| 00000440 65 6d 2c 20 21 4c 69 62 53 74 6f 72 65 32 0a 28 |em, !LibStore2.(| 00000450 63 6f 6d 69 6e 67 20 73 6f 6f 6e 21 21 29 20 61 |coming soon!!) a| 00000460 6e 64 20 73 6f 20 6f 6e 2e 0a 0a 54 68 65 20 73 |nd so on...The s| 00000470 63 72 69 70 74 20 66 69 6c 65 20 63 6f 6e 74 61 |cript file conta| 00000480 69 6e 73 20 61 20 6c 69 73 74 20 6f 66 20 63 6f |ins a list of co| 00000490 6d 6d 61 6e 64 73 2c 20 74 68 65 20 73 79 6e 74 |mmands, the synt| 000004a0 61 78 20 61 6e 64 20 62 72 69 65 66 20 64 65 73 |ax and brief des| 000004b0 63 72 69 70 74 69 6f 6e 0a 66 6f 72 20 77 68 69 |cription.for whi| 000004c0 63 68 20 69 73 20 63 6f 6e 74 61 69 6e 65 64 20 |ch is contained | 000004d0 69 6e 20 74 68 65 20 27 43 6f 6d 6d 61 6e 64 73 |in the 'Commands| 000004e0 27 20 66 69 6c 65 2e 20 53 6f 6d 65 20 70 6f 69 |' file. Some poi| 000004f0 6e 74 73 20 77 68 69 63 68 20 6d 61 79 20 6e 65 |nts which may ne| 00000500 65 64 0a 65 78 70 6c 61 69 6e 61 74 69 6f 6e 20 |ed.explaination | 00000510 61 72 65 3a 0a 0a 49 66 20 79 6f 75 20 64 6f 20 |are:..If you do | 00000520 6e 6f 74 20 69 6e 63 6c 75 64 65 20 4e 41 4d 45 |not include NAME| 00000530 20 61 74 20 74 68 65 20 62 65 67 69 6e 6e 69 6e | at the beginnin| 00000540 67 20 6f 66 20 79 6f 75 72 20 70 72 6f 67 72 61 |g of your progra| 00000550 6d 2c 20 69 74 20 6c 6f 6f 6b 73 0a 68 6f 72 72 |m, it looks.horr| 00000560 69 62 6c 65 2e 20 59 6f 75 20 63 61 6e 20 63 68 |ible. You can ch| 00000570 61 6e 67 65 20 74 68 65 20 4e 41 4d 45 20 61 74 |ange the NAME at| 00000580 20 61 20 6c 61 74 65 72 20 70 6f 69 6e 74 20 69 | a later point i| 00000590 66 20 79 6f 75 20 77 61 6e 74 20 74 6f 2e 0a 0a |f you want to...| 000005a0 43 48 4f 49 43 45 2c 20 4f 50 54 49 4f 4e 53 2c |CHOICE, OPTIONS,| 000005b0 20 65 74 63 20 2d 20 74 68 65 20 66 69 72 73 74 | etc - the first| 000005c0 20 70 61 72 61 6d 65 74 65 72 20 69 73 20 74 68 | parameter is th| 000005d0 65 20 6e 75 6d 62 65 72 20 6f 66 20 63 68 6f 69 |e number of choi| 000005e0 63 65 73 2e 0a 54 68 69 73 20 69 73 20 66 6f 6c |ces..This is fol| 000005f0 6c 6f 77 65 64 20 62 79 20 65 61 63 68 20 6f 66 |lowed by each of| 00000600 20 74 68 65 20 63 68 6f 69 63 65 73 2e 20 28 49 | the choices. (I| 00000610 74 20 61 70 70 65 61 72 73 20 79 6f 75 20 63 61 |t appears you ca| 00000620 6e 27 74 20 75 73 65 20 61 20 73 70 61 63 65 0a |n't use a space.| 00000630 69 6e 20 74 68 65 73 65 20 2d 20 62 75 74 20 41 |in these - but A| 00000640 4c 54 2b 53 70 61 63 65 20 77 69 6c 6c 20 70 72 |LT+Space will pr| 00000650 6f 76 69 64 65 20 79 6f 75 20 77 69 74 68 20 61 |ovide you with a| 00000660 20 68 61 72 64 20 73 70 61 63 65 29 2c 20 61 6e | hard space), an| 00000670 64 20 74 68 65 6e 0a 62 79 20 61 20 76 61 72 69 |d then.by a vari| 00000680 61 62 6c 65 20 6e 75 6d 62 65 72 2c 20 61 6e 64 |able number, and| 00000690 20 66 69 6e 61 6c 6c 79 20 62 79 20 74 68 65 20 | finally by the | 000006a0 63 6f 6d 6d 65 6e 74 2e 0a 0a 56 61 72 69 61 62 |comment...Variab| 000006b0 6c 65 20 6e 75 6d 62 65 72 20 2d 20 73 69 6d 70 |le number - simp| 000006c0 6c 79 20 61 20 6e 75 6d 62 65 72 2e 20 54 68 65 |ly a number. The| 000006d0 72 65 20 61 72 65 20 32 35 36 20 76 61 72 69 61 |re are 256 varia| 000006e0 62 6c 65 73 2c 20 6e 75 6d 62 65 72 65 64 20 66 |bles, numbered f| 000006f0 72 6f 6d 0a 30 2d 32 35 35 2e 0a 0a 49 46 20 2d |rom.0-255...IF -| 00000700 20 6e 6f 74 20 61 73 20 61 64 76 61 6e 63 65 64 | not as advanced| 00000710 20 61 73 20 42 41 53 49 43 73 20 49 46 21 20 55 | as BASICs IF! U| 00000720 73 65 73 20 45 56 41 4c 2c 20 74 68 6f 75 67 68 |ses EVAL, though| 00000730 2c 20 74 68 69 73 20 6d 65 61 6e 73 20 74 68 61 |, this means tha| 00000740 74 3a 0a 49 46 20 31 20 3d 20 32 20 47 4f 54 4f |t:.IF 1 = 2 GOTO| 00000750 20 46 6c 69 67 67 6c 65 20 2d 20 49 66 20 76 61 | Fliggle - If va| 00000760 72 69 61 62 6c 65 20 31 20 69 73 20 65 71 75 61 |riable 1 is equa| 00000770 6c 20 74 6f 20 32 20 74 68 65 6e 20 67 6f 74 6f |l to 2 then goto| 00000780 20 66 6c 69 67 67 6c 65 2c 0a 61 20 6c 61 62 65 | fliggle,.a labe| 00000790 6c 2e 0a 0a 4c 61 62 65 6c 73 20 2d 20 6c 69 6e |l...Labels - lin| 000007a0 65 73 20 62 65 67 69 6e 6e 69 6e 67 20 77 69 74 |es beginning wit| 000007b0 68 20 3a 2e 20 41 6e 79 74 68 69 6e 67 20 61 66 |h :. Anything af| 000007c0 74 65 72 20 74 68 65 20 3a 20 69 73 20 74 68 65 |ter the : is the| 000007d0 20 6c 61 62 65 6c 20 74 65 78 74 2e 0a 0a 43 6f | label text...Co| 000007e0 6d 6d 65 6e 74 73 20 2d 20 6c 69 6e 65 73 20 62 |mments - lines b| 000007f0 65 67 69 6e 6e 69 6e 67 20 77 69 74 68 20 7c 20 |eginning with | | 00000800 61 72 65 20 69 67 6e 6f 72 65 64 2e 20 28 43 75 |are ignored. (Cu| 00000810 65 20 66 6f 72 20 52 49 53 43 20 50 43 20 6f 77 |e for RISC PC ow| 00000820 6e 65 72 73 20 74 6f 0a 73 70 65 6e 64 20 68 61 |ners to.spend ha| 00000830 6c 66 20 61 20 63 65 6e 74 75 72 79 20 61 74 74 |lf a century att| 00000840 65 6d 70 74 69 6e 67 20 74 6f 20 66 69 6e 64 20 |empting to find | 00000850 74 68 65 20 7c 20 63 68 61 72 61 63 74 65 72 2e |the | character.| 00000860 20 49 74 20 72 65 61 6c 6c 79 20 64 6f 65 73 0a | It really does.| 00000870 65 78 69 73 74 20 6f 6e 20 79 6f 75 72 20 6b 65 |exist on your ke| 00000880 79 62 6f 61 72 64 2e 20 49 20 6d 61 79 20 77 72 |yboard. I may wr| 00000890 69 74 65 20 61 20 70 61 74 63 68 20 74 6f 20 63 |ite a patch to c| 000008a0 6f 6e 66 75 73 65 20 6d 6f 72 65 20 70 65 6f 70 |onfuse more peop| 000008b0 6c 65 2c 20 69 66 0a 49 20 65 76 65 72 20 67 65 |le, if.I ever ge| 000008c0 74 20 61 20 52 49 53 43 20 50 43 29 0a 0a 53 57 |t a RISC PC)..SW| 000008d0 41 50 44 49 53 43 20 2d 20 77 6f 72 6b 73 20 62 |APDISC - works b| 000008e0 79 20 75 73 69 6e 67 20 61 20 66 69 6c 65 20 74 |y using a file t| 000008f0 68 61 74 20 27 74 61 67 73 27 20 74 68 65 20 61 |hat 'tags' the a| 00000900 70 70 72 6f 70 72 69 61 74 65 20 64 69 73 63 2e |ppropriate disc.| 00000910 20 54 68 69 73 0a 6d 65 61 6e 73 20 74 68 61 74 | This.means that| 00000920 20 69 66 20 74 68 65 20 76 61 72 69 6f 75 73 20 | if the various | 00000930 64 69 73 63 73 20 61 72 65 20 70 75 74 20 74 6f |discs are put to| 00000940 67 65 74 68 65 72 20 28 65 67 20 4c 6f 77 2d 44 |gether (eg Low-D| 00000950 65 6e 73 69 74 79 20 69 6e 74 6f 20 0a 48 69 67 |ensity into .Hig| 00000960 68 2d 44 65 6e 73 69 74 79 29 20 2d 20 74 68 65 |h-Density) - the| 00000970 20 74 68 69 6e 67 20 61 73 6b 73 20 79 6f 75 20 | thing asks you | 00000980 74 6f 20 73 77 61 70 20 64 69 73 63 73 20 6f 6e |to swap discs on| 00000990 6c 79 20 77 68 65 6e 20 6e 65 65 64 20 62 65 2e |ly when need be.| 000009a0 0a 54 68 65 20 74 61 67 20 66 69 6c 65 20 69 73 |.The tag file is| 000009b0 20 73 74 6f 72 65 64 20 69 6e 20 46 69 6c 65 73 | stored in Files| 000009c0 2c 20 61 6e 64 20 61 6e 79 20 65 78 74 72 61 20 |, and any extra | 000009d0 64 69 73 63 73 20 73 68 6f 75 6c 64 20 63 6f 6e |discs should con| 000009e0 74 61 69 6e 20 74 68 65 0a 46 69 6c 65 73 20 64 |tain the.Files d| 000009f0 69 72 65 63 74 6f 72 79 20 28 77 68 69 63 68 20 |irectory (which | 00000a00 73 68 6f 75 6c 64 20 63 6f 6e 74 61 69 6e 20 61 |should contain a| 00000a10 6c 6c 20 74 68 65 20 61 70 70 72 6f 70 72 69 61 |ll the appropria| 00000a20 74 65 20 66 69 6c 65 73 20 74 6f 20 63 6f 6e 74 |te files to cont| 00000a30 69 6e 75 65 0a 66 72 6f 6d 20 77 68 65 72 65 20 |inue.from where | 00000a40 77 65 20 6c 65 66 74 20 6f 66 66 29 2e 0a 0a 4f |we left off)...O| 00000a50 50 54 49 4f 4e 53 2c 52 41 44 49 4f 53 20 2d 20 |PTIONS,RADIOS - | 00000a60 3c 76 61 72 20 6e 75 6d 3e 20 68 61 73 20 74 68 |<var num> has th| 00000a70 65 20 6f 70 74 69 6f 6e 28 73 29 20 63 68 6f 73 |e option(s) chos| 00000a80 65 6e 20 69 6e 20 62 69 6e 61 72 79 20 66 6f 72 |en in binary for| 00000a90 6d 20 2d 20 69 2e 65 2e 0a 25 31 31 30 30 30 20 |m - i.e..%11000 | 00000aa0 77 6f 75 6c 64 20 6d 65 61 6e 20 6f 70 74 69 6f |would mean optio| 00000ab0 6e 73 20 33 20 26 20 34 20 77 65 72 65 20 73 65 |ns 3 & 4 were se| 00000ac0 6c 65 63 74 65 64 2e 20 54 68 69 73 20 6d 65 74 |lected. This met| 00000ad0 68 6f 64 20 6d 65 61 6e 73 20 74 68 61 74 0a 28 |hod means that.(| 00000ae0 3c 76 61 72 20 6e 75 6d 3e 20 3d 20 31 29 0a 0a |<var num> = 1)..| 00000af0 49 46 20 31 20 41 4e 44 20 31 3c 3c 31 20 77 6f |IF 1 AND 1<<1 wo| 00000b00 75 6c 64 20 74 65 73 74 20 66 6f 72 20 6f 70 74 |uld test for opt| 00000b10 69 6f 6e 20 31 2c 0a 49 46 20 31 20 41 4e 44 20 |ion 1,.IF 1 AND | 00000b20 31 3c 3c 32 20 77 6f 75 6c 64 20 74 65 73 74 20 |1<<2 would test | 00000b30 66 6f 72 20 6f 70 74 69 6f 6e 20 32 0a 61 6e 64 |for option 2.and| 00000b40 20 73 6f 20 6f 6e 2e 0a 0a 48 6d 6d 2e 2e 2e 20 | so on...Hmm... | 00000b50 54 68 69 6e 6b 20 74 68 61 74 20 74 68 61 74 20 |Think that that | 00000b60 73 68 6f 75 6c 64 20 68 61 76 65 20 63 6c 61 72 |should have clar| 00000b70 69 66 69 65 64 20 65 76 65 72 79 74 68 69 6e 67 |ified everything| 00000b80 2e 20 49 66 20 79 6f 75 20 61 72 65 20 73 74 69 |. If you are sti| 00000b90 6c 6c 0a 63 6f 6e 66 75 73 65 64 2c 20 79 6f 75 |ll.confused, you| 00000ba0 20 63 6f 75 6c 64 20 74 72 79 2e 2e 2e 0a 0a 43 | could try.....C| 00000bb0 6f 6e 74 61 63 74 69 6e 67 20 6d 65 0a 2d 2d 2d |ontacting me.---| 00000bc0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 0a 49 66 20 79 |----------..If y| 00000bd0 6f 75 20 77 61 6e 74 20 74 6f 20 75 73 65 20 74 |ou want to use t| 00000be0 68 69 73 20 66 6f 72 20 63 6f 6d 6d 65 72 63 69 |his for commerci| 00000bf0 61 6c 20 70 75 72 70 6f 73 65 73 20 28 68 65 79 |al purposes (hey| 00000c00 21 20 69 74 20 77 6f 75 6c 64 20 62 65 20 6e 69 |! it would be ni| 00000c10 63 65 20 74 6f 0a 68 61 76 65 20 61 20 63 6f 6e |ce to.have a con| 00000c20 73 69 73 74 61 6e 74 20 75 73 65 72 20 69 6e 74 |sistant user int| 00000c30 65 72 66 61 63 65 20 66 6f 72 20 70 72 6f 67 72 |erface for progr| 00000c40 61 6d 20 69 6e 73 74 61 6c 6c 61 74 69 6f 6e 20 |am installation | 00000c50 2d 20 74 68 69 6e 6b 20 61 62 6f 75 74 0a 69 74 |- think about.it| 00000c60 29 2c 20 68 61 76 65 20 61 20 71 75 65 72 79 2c |), have a query,| 00000c70 20 77 69 73 68 20 74 6f 20 72 65 70 6f 72 74 20 | wish to report | 00000c80 61 20 62 75 67 20 28 21 29 20 6f 72 20 61 72 65 |a bug (!) or are| 00000c90 20 6d 65 72 65 6c 79 20 66 65 65 6c 69 6e 67 20 | merely feeling | 00000ca0 6c 6f 6e 65 6c 79 2c 0a 49 20 63 61 6e 20 62 65 |lonely,.I can be| 00000cb0 20 63 6f 6e 74 61 63 74 65 64 20 61 74 3a 0a 0a | contacted at:..| 00000cc0 45 2d 6d 61 69 6c 3a 20 41 72 63 61 64 65 20 61 |E-mail: Arcade a| 00000cd0 73 20 27 41 68 75 6e 74 65 72 27 0a 0a 53 6e 61 |s 'Ahunter'..Sna| 00000ce0 69 6c 2d 6d 61 69 6c 3a 0a 0a 31 38 20 57 61 72 |il-mail:..18 War| 00000cf0 72 65 6e 20 43 6c 6f 73 65 2c 0a 45 6c 6d 73 77 |ren Close,.Elmsw| 00000d00 65 6c 6c 2c 0a 42 75 72 79 20 53 74 2e 20 45 64 |ell,.Bury St. Ed| 00000d10 6d 75 6e 64 73 2c 0a 53 75 66 66 6f 6c 6b 2c 0a |munds,.Suffolk,.| 00000d20 49 50 33 30 20 39 44 53 2e 0a 0a 49 27 6c 6c 20 |IP30 9DS...I'll | 00000d30 74 72 79 20 74 6f 20 61 6e 73 77 65 72 20 61 6c |try to answer al| 00000d40 6c 20 6c 65 74 74 65 72 73 2f 6d 65 73 73 61 67 |l letters/messag| 00000d50 65 73 2c 20 69 6e 20 74 69 6d 65 2e 2e 2e 0a 0a |es, in time.....| 00000d60 43 6f 6d 69 6e 67 20 73 6f 6f 6e 20 2d 20 4c 69 |Coming soon - Li| 00000d70 62 53 74 6f 72 65 20 32 20 2d 20 73 74 75 70 69 |bStore 2 - stupi| 00000d80 64 20 6e 61 6d 65 2c 20 67 72 65 61 74 20 42 41 |d name, great BA| 00000d90 53 49 43 20 6c 69 62 72 61 72 69 65 73 2e 2e 2e |SIC libraries...| 00000da0 0a |.| 00000da1