Home » Archimedes archive » Acorn User » AU 1996-Xmas.adf » Regulars » StarInfo/Fletcher/!Help

StarInfo/Fletcher/!Help

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 » Archimedes archive » Acorn User » AU 1996-Xmas.adf » Regulars
Filename: StarInfo/Fletcher/!Help
Read OK:
File size: 0D2E bytes
Load address: 0000
Exec address: 0000
File contents
                                   NewRMTidy
                                   =========

Version 1.00 (23 May 1996)
     
Introduction
------------
Richard Murray - in his usual manner - asked me if I could write a utility to
get rid of the annoying 'Incarnation not found' error which occurs if you
kill off a module and it dies during finalisation.


Usage
-----
   Run the !Create file. That's it.
   Hopefully, the code will be assembled with no errors and all that in
future will be required is the running of the Utility.
   Probably could copy it into your library, and then use :
   Set Alias$RMTidy /RMTidy
   to ensure that you use the new version. This doesn't lose much as the
RMTidy command is no longer supported, and is more likely to corrupt the
module area than to release any space.

   To test the RMTidy program, run the Module named Rubbish, do *RmKill Test.
to attempt to kill it, and then use RMTidy to restore the module chain.


How it works
------------
When I disassembled the RiscOS module, I found out that the module data is
stored in a chain from &7D0. That is, on my R03.1 A5000 it is. If this has
changed on the RPC, then it'll probably make a real mess. You could try it
though.

What it does is it goes through the chain checking if the module has a valid
workspace pointer, and if it hasn't it asks if you want to kill the module.
If you do, it unlinks the module from the chain.

This is the safest way to do it because it uses the least amount of messing
with OS routines which are likely to confuse it. This does, of course, mean
that the module remains in memory and it's memory is not released, but on the
other hand, it also means that if the module contains code which is linked to
vectors or filters which would /really/ kill the computer by becoming corrupt
will not be removed.


Disclaimer
----------
  The author accepts no responsibility for any problems which this
application may cause or loss of data resulting in its use. This application
is Public Domain. This means that it may be distributed, so long as no charge
other than copying costs are charged for it.
  

Source code
-----------
   This program requires the !JFPatch pre-assembler to make the code. This is
a simple text-to-basic assembler which takes a text assembler file, makes a
basic program from it to assemble, assembles it and returns any errors. It is
available from Justin Fletcher's website (prompt.essex.ac.uk/users/jrflet) or
directly by mailing to Gerph@essex.ac.uk.
   All source code and the resultant module must be distributed together.


Contact
-------
Any comments, queries, donations or bug reports can be sent to :

Fido   : Justin Fletcher at 2:255/116.3
E-Mail : Gerph@essex.ac.uk
URL    : http://prompt.essex.ac.uk/users/jrflet
IRC    : On #Acorn as Gerph
Finger : finger jrflet@postman.essex.ac.uk
Tel    : (01842) 813979 (Home)
       : (01206) 873119 (Uni)

Snail Mail :
    Justin Fletcher
    �Galadriel�
    17b Cromwell Road,
    Weeting,
    Brandon,
    Suffolk.
    IP27 0QT

Uni address : (year 1995/6 only)
    Eddington Tower,
    Flat 9/5,
    University of Essex,
    Wivenhoe Park,
    Colchester.
    CO4 3SQ


History
-------
Version 1.00 : 23 May 1996
               Richard, if you ask me to do anything ever again, I swear I'll
               say no. Honest :-)
               This version works... Finally :-)
00000000  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000020  20 20 20 4e 65 77 52 4d  54 69 64 79 0a 20 20 20  |   NewRMTidy.   |
00000030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000050  3d 3d 3d 3d 3d 3d 3d 3d  3d 0a 0a 56 65 72 73 69  |=========..Versi|
00000060  6f 6e 20 31 2e 30 30 20  28 32 33 20 4d 61 79 20  |on 1.00 (23 May |
00000070  31 39 39 36 29 0a 20 20  20 20 20 0a 49 6e 74 72  |1996).     .Intr|
00000080  6f 64 75 63 74 69 6f 6e  0a 2d 2d 2d 2d 2d 2d 2d  |oduction.-------|
00000090  2d 2d 2d 2d 2d 0a 52 69  63 68 61 72 64 20 4d 75  |-----.Richard Mu|
000000a0  72 72 61 79 20 2d 20 69  6e 20 68 69 73 20 75 73  |rray - in his us|
000000b0  75 61 6c 20 6d 61 6e 6e  65 72 20 2d 20 61 73 6b  |ual manner - ask|
000000c0  65 64 20 6d 65 20 69 66  20 49 20 63 6f 75 6c 64  |ed me if I could|
000000d0  20 77 72 69 74 65 20 61  20 75 74 69 6c 69 74 79  | write a utility|
000000e0  20 74 6f 0a 67 65 74 20  72 69 64 20 6f 66 20 74  | to.get rid of t|
000000f0  68 65 20 61 6e 6e 6f 79  69 6e 67 20 27 49 6e 63  |he annoying 'Inc|
00000100  61 72 6e 61 74 69 6f 6e  20 6e 6f 74 20 66 6f 75  |arnation not fou|
00000110  6e 64 27 20 65 72 72 6f  72 20 77 68 69 63 68 20  |nd' error which |
00000120  6f 63 63 75 72 73 20 69  66 20 79 6f 75 0a 6b 69  |occurs if you.ki|
00000130  6c 6c 20 6f 66 66 20 61  20 6d 6f 64 75 6c 65 20  |ll off a module |
00000140  61 6e 64 20 69 74 20 64  69 65 73 20 64 75 72 69  |and it dies duri|
00000150  6e 67 20 66 69 6e 61 6c  69 73 61 74 69 6f 6e 2e  |ng finalisation.|
00000160  0a 0a 0a 55 73 61 67 65  0a 2d 2d 2d 2d 2d 0a 20  |...Usage.-----. |
00000170  20 20 52 75 6e 20 74 68  65 20 21 43 72 65 61 74  |  Run the !Creat|
00000180  65 20 66 69 6c 65 2e 20  54 68 61 74 27 73 20 69  |e file. That's i|
00000190  74 2e 0a 20 20 20 48 6f  70 65 66 75 6c 6c 79 2c  |t..   Hopefully,|
000001a0  20 74 68 65 20 63 6f 64  65 20 77 69 6c 6c 20 62  | the code will b|
000001b0  65 20 61 73 73 65 6d 62  6c 65 64 20 77 69 74 68  |e assembled with|
000001c0  20 6e 6f 20 65 72 72 6f  72 73 20 61 6e 64 20 61  | no errors and a|
000001d0  6c 6c 20 74 68 61 74 20  69 6e 0a 66 75 74 75 72  |ll that in.futur|
000001e0  65 20 77 69 6c 6c 20 62  65 20 72 65 71 75 69 72  |e will be requir|
000001f0  65 64 20 69 73 20 74 68  65 20 72 75 6e 6e 69 6e  |ed is the runnin|
00000200  67 20 6f 66 20 74 68 65  20 55 74 69 6c 69 74 79  |g of the Utility|
00000210  2e 0a 20 20 20 50 72 6f  62 61 62 6c 79 20 63 6f  |..   Probably co|
00000220  75 6c 64 20 63 6f 70 79  20 69 74 20 69 6e 74 6f  |uld copy it into|
00000230  20 79 6f 75 72 20 6c 69  62 72 61 72 79 2c 20 61  | your library, a|
00000240  6e 64 20 74 68 65 6e 20  75 73 65 20 3a 0a 20 20  |nd then use :.  |
00000250  20 53 65 74 20 41 6c 69  61 73 24 52 4d 54 69 64  | Set Alias$RMTid|
00000260  79 20 2f 52 4d 54 69 64  79 0a 20 20 20 74 6f 20  |y /RMTidy.   to |
00000270  65 6e 73 75 72 65 20 74  68 61 74 20 79 6f 75 20  |ensure that you |
00000280  75 73 65 20 74 68 65 20  6e 65 77 20 76 65 72 73  |use the new vers|
00000290  69 6f 6e 2e 20 54 68 69  73 20 64 6f 65 73 6e 27  |ion. This doesn'|
000002a0  74 20 6c 6f 73 65 20 6d  75 63 68 20 61 73 20 74  |t lose much as t|
000002b0  68 65 0a 52 4d 54 69 64  79 20 63 6f 6d 6d 61 6e  |he.RMTidy comman|
000002c0  64 20 69 73 20 6e 6f 20  6c 6f 6e 67 65 72 20 73  |d is no longer s|
000002d0  75 70 70 6f 72 74 65 64  2c 20 61 6e 64 20 69 73  |upported, and is|
000002e0  20 6d 6f 72 65 20 6c 69  6b 65 6c 79 20 74 6f 20  | more likely to |
000002f0  63 6f 72 72 75 70 74 20  74 68 65 0a 6d 6f 64 75  |corrupt the.modu|
00000300  6c 65 20 61 72 65 61 20  74 68 61 6e 20 74 6f 20  |le area than to |
00000310  72 65 6c 65 61 73 65 20  61 6e 79 20 73 70 61 63  |release any spac|
00000320  65 2e 0a 0a 20 20 20 54  6f 20 74 65 73 74 20 74  |e...   To test t|
00000330  68 65 20 52 4d 54 69 64  79 20 70 72 6f 67 72 61  |he RMTidy progra|
00000340  6d 2c 20 72 75 6e 20 74  68 65 20 4d 6f 64 75 6c  |m, run the Modul|
00000350  65 20 6e 61 6d 65 64 20  52 75 62 62 69 73 68 2c  |e named Rubbish,|
00000360  20 64 6f 20 2a 52 6d 4b  69 6c 6c 20 54 65 73 74  | do *RmKill Test|
00000370  2e 0a 74 6f 20 61 74 74  65 6d 70 74 20 74 6f 20  |..to attempt to |
00000380  6b 69 6c 6c 20 69 74 2c  20 61 6e 64 20 74 68 65  |kill it, and the|
00000390  6e 20 75 73 65 20 52 4d  54 69 64 79 20 74 6f 20  |n use RMTidy to |
000003a0  72 65 73 74 6f 72 65 20  74 68 65 20 6d 6f 64 75  |restore the modu|
000003b0  6c 65 20 63 68 61 69 6e  2e 0a 0a 0a 48 6f 77 20  |le chain....How |
000003c0  69 74 20 77 6f 72 6b 73  0a 2d 2d 2d 2d 2d 2d 2d  |it works.-------|
000003d0  2d 2d 2d 2d 2d 0a 57 68  65 6e 20 49 20 64 69 73  |-----.When I dis|
000003e0  61 73 73 65 6d 62 6c 65  64 20 74 68 65 20 52 69  |assembled the Ri|
000003f0  73 63 4f 53 20 6d 6f 64  75 6c 65 2c 20 49 20 66  |scOS module, I f|
00000400  6f 75 6e 64 20 6f 75 74  20 74 68 61 74 20 74 68  |ound out that th|
00000410  65 20 6d 6f 64 75 6c 65  20 64 61 74 61 20 69 73  |e module data is|
00000420  0a 73 74 6f 72 65 64 20  69 6e 20 61 20 63 68 61  |.stored in a cha|
00000430  69 6e 20 66 72 6f 6d 20  26 37 44 30 2e 20 54 68  |in from &7D0. Th|
00000440  61 74 20 69 73 2c 20 6f  6e 20 6d 79 20 52 30 33  |at is, on my R03|
00000450  2e 31 20 41 35 30 30 30  20 69 74 20 69 73 2e 20  |.1 A5000 it is. |
00000460  49 66 20 74 68 69 73 20  68 61 73 0a 63 68 61 6e  |If this has.chan|
00000470  67 65 64 20 6f 6e 20 74  68 65 20 52 50 43 2c 20  |ged on the RPC, |
00000480  74 68 65 6e 20 69 74 27  6c 6c 20 70 72 6f 62 61  |then it'll proba|
00000490  62 6c 79 20 6d 61 6b 65  20 61 20 72 65 61 6c 20  |bly make a real |
000004a0  6d 65 73 73 2e 20 59 6f  75 20 63 6f 75 6c 64 20  |mess. You could |
000004b0  74 72 79 20 69 74 0a 74  68 6f 75 67 68 2e 0a 0a  |try it.though...|
000004c0  57 68 61 74 20 69 74 20  64 6f 65 73 20 69 73 20  |What it does is |
000004d0  69 74 20 67 6f 65 73 20  74 68 72 6f 75 67 68 20  |it goes through |
000004e0  74 68 65 20 63 68 61 69  6e 20 63 68 65 63 6b 69  |the chain checki|
000004f0  6e 67 20 69 66 20 74 68  65 20 6d 6f 64 75 6c 65  |ng if the module|
00000500  20 68 61 73 20 61 20 76  61 6c 69 64 0a 77 6f 72  | has a valid.wor|
00000510  6b 73 70 61 63 65 20 70  6f 69 6e 74 65 72 2c 20  |kspace pointer, |
00000520  61 6e 64 20 69 66 20 69  74 20 68 61 73 6e 27 74  |and if it hasn't|
00000530  20 69 74 20 61 73 6b 73  20 69 66 20 79 6f 75 20  | it asks if you |
00000540  77 61 6e 74 20 74 6f 20  6b 69 6c 6c 20 74 68 65  |want to kill the|
00000550  20 6d 6f 64 75 6c 65 2e  0a 49 66 20 79 6f 75 20  | module..If you |
00000560  64 6f 2c 20 69 74 20 75  6e 6c 69 6e 6b 73 20 74  |do, it unlinks t|
00000570  68 65 20 6d 6f 64 75 6c  65 20 66 72 6f 6d 20 74  |he module from t|
00000580  68 65 20 63 68 61 69 6e  2e 0a 0a 54 68 69 73 20  |he chain...This |
00000590  69 73 20 74 68 65 20 73  61 66 65 73 74 20 77 61  |is the safest wa|
000005a0  79 20 74 6f 20 64 6f 20  69 74 20 62 65 63 61 75  |y to do it becau|
000005b0  73 65 20 69 74 20 75 73  65 73 20 74 68 65 20 6c  |se it uses the l|
000005c0  65 61 73 74 20 61 6d 6f  75 6e 74 20 6f 66 20 6d  |east amount of m|
000005d0  65 73 73 69 6e 67 0a 77  69 74 68 20 4f 53 20 72  |essing.with OS r|
000005e0  6f 75 74 69 6e 65 73 20  77 68 69 63 68 20 61 72  |outines which ar|
000005f0  65 20 6c 69 6b 65 6c 79  20 74 6f 20 63 6f 6e 66  |e likely to conf|
00000600  75 73 65 20 69 74 2e 20  54 68 69 73 20 64 6f 65  |use it. This doe|
00000610  73 2c 20 6f 66 20 63 6f  75 72 73 65 2c 20 6d 65  |s, of course, me|
00000620  61 6e 0a 74 68 61 74 20  74 68 65 20 6d 6f 64 75  |an.that the modu|
00000630  6c 65 20 72 65 6d 61 69  6e 73 20 69 6e 20 6d 65  |le remains in me|
00000640  6d 6f 72 79 20 61 6e 64  20 69 74 27 73 20 6d 65  |mory and it's me|
00000650  6d 6f 72 79 20 69 73 20  6e 6f 74 20 72 65 6c 65  |mory is not rele|
00000660  61 73 65 64 2c 20 62 75  74 20 6f 6e 20 74 68 65  |ased, but on the|
00000670  0a 6f 74 68 65 72 20 68  61 6e 64 2c 20 69 74 20  |.other hand, it |
00000680  61 6c 73 6f 20 6d 65 61  6e 73 20 74 68 61 74 20  |also means that |
00000690  69 66 20 74 68 65 20 6d  6f 64 75 6c 65 20 63 6f  |if the module co|
000006a0  6e 74 61 69 6e 73 20 63  6f 64 65 20 77 68 69 63  |ntains code whic|
000006b0  68 20 69 73 20 6c 69 6e  6b 65 64 20 74 6f 0a 76  |h is linked to.v|
000006c0  65 63 74 6f 72 73 20 6f  72 20 66 69 6c 74 65 72  |ectors or filter|
000006d0  73 20 77 68 69 63 68 20  77 6f 75 6c 64 20 2f 72  |s which would /r|
000006e0  65 61 6c 6c 79 2f 20 6b  69 6c 6c 20 74 68 65 20  |eally/ kill the |
000006f0  63 6f 6d 70 75 74 65 72  20 62 79 20 62 65 63 6f  |computer by beco|
00000700  6d 69 6e 67 20 63 6f 72  72 75 70 74 0a 77 69 6c  |ming corrupt.wil|
00000710  6c 20 6e 6f 74 20 62 65  20 72 65 6d 6f 76 65 64  |l not be removed|
00000720  2e 0a 0a 0a 44 69 73 63  6c 61 69 6d 65 72 0a 2d  |....Disclaimer.-|
00000730  2d 2d 2d 2d 2d 2d 2d 2d  2d 0a 20 20 54 68 65 20  |---------.  The |
00000740  61 75 74 68 6f 72 20 61  63 63 65 70 74 73 20 6e  |author accepts n|
00000750  6f 20 72 65 73 70 6f 6e  73 69 62 69 6c 69 74 79  |o responsibility|
00000760  20 66 6f 72 20 61 6e 79  20 70 72 6f 62 6c 65 6d  | for any problem|
00000770  73 20 77 68 69 63 68 20  74 68 69 73 0a 61 70 70  |s which this.app|
00000780  6c 69 63 61 74 69 6f 6e  20 6d 61 79 20 63 61 75  |lication may cau|
00000790  73 65 20 6f 72 20 6c 6f  73 73 20 6f 66 20 64 61  |se or loss of da|
000007a0  74 61 20 72 65 73 75 6c  74 69 6e 67 20 69 6e 20  |ta resulting in |
000007b0  69 74 73 20 75 73 65 2e  20 54 68 69 73 20 61 70  |its use. This ap|
000007c0  70 6c 69 63 61 74 69 6f  6e 0a 69 73 20 50 75 62  |plication.is Pub|
000007d0  6c 69 63 20 44 6f 6d 61  69 6e 2e 20 54 68 69 73  |lic Domain. This|
000007e0  20 6d 65 61 6e 73 20 74  68 61 74 20 69 74 20 6d  | means that it m|
000007f0  61 79 20 62 65 20 64 69  73 74 72 69 62 75 74 65  |ay be distribute|
00000800  64 2c 20 73 6f 20 6c 6f  6e 67 20 61 73 20 6e 6f  |d, so long as no|
00000810  20 63 68 61 72 67 65 0a  6f 74 68 65 72 20 74 68  | charge.other th|
00000820  61 6e 20 63 6f 70 79 69  6e 67 20 63 6f 73 74 73  |an copying costs|
00000830  20 61 72 65 20 63 68 61  72 67 65 64 20 66 6f 72  | are charged for|
00000840  20 69 74 2e 0a 20 20 0a  0a 53 6f 75 72 63 65 20  | it..  ..Source |
00000850  63 6f 64 65 0a 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |code.-----------|
00000860  0a 20 20 20 54 68 69 73  20 70 72 6f 67 72 61 6d  |.   This program|
00000870  20 72 65 71 75 69 72 65  73 20 74 68 65 20 21 4a  | requires the !J|
00000880  46 50 61 74 63 68 20 70  72 65 2d 61 73 73 65 6d  |FPatch pre-assem|
00000890  62 6c 65 72 20 74 6f 20  6d 61 6b 65 20 74 68 65  |bler to make the|
000008a0  20 63 6f 64 65 2e 20 54  68 69 73 20 69 73 0a 61  | code. This is.a|
000008b0  20 73 69 6d 70 6c 65 20  74 65 78 74 2d 74 6f 2d  | simple text-to-|
000008c0  62 61 73 69 63 20 61 73  73 65 6d 62 6c 65 72 20  |basic assembler |
000008d0  77 68 69 63 68 20 74 61  6b 65 73 20 61 20 74 65  |which takes a te|
000008e0  78 74 20 61 73 73 65 6d  62 6c 65 72 20 66 69 6c  |xt assembler fil|
000008f0  65 2c 20 6d 61 6b 65 73  20 61 0a 62 61 73 69 63  |e, makes a.basic|
00000900  20 70 72 6f 67 72 61 6d  20 66 72 6f 6d 20 69 74  | program from it|
00000910  20 74 6f 20 61 73 73 65  6d 62 6c 65 2c 20 61 73  | to assemble, as|
00000920  73 65 6d 62 6c 65 73 20  69 74 20 61 6e 64 20 72  |sembles it and r|
00000930  65 74 75 72 6e 73 20 61  6e 79 20 65 72 72 6f 72  |eturns any error|
00000940  73 2e 20 49 74 20 69 73  0a 61 76 61 69 6c 61 62  |s. It is.availab|
00000950  6c 65 20 66 72 6f 6d 20  4a 75 73 74 69 6e 20 46  |le from Justin F|
00000960  6c 65 74 63 68 65 72 27  73 20 77 65 62 73 69 74  |letcher's websit|
00000970  65 20 28 70 72 6f 6d 70  74 2e 65 73 73 65 78 2e  |e (prompt.essex.|
00000980  61 63 2e 75 6b 2f 75 73  65 72 73 2f 6a 72 66 6c  |ac.uk/users/jrfl|
00000990  65 74 29 20 6f 72 0a 64  69 72 65 63 74 6c 79 20  |et) or.directly |
000009a0  62 79 20 6d 61 69 6c 69  6e 67 20 74 6f 20 47 65  |by mailing to Ge|
000009b0  72 70 68 40 65 73 73 65  78 2e 61 63 2e 75 6b 2e  |rph@essex.ac.uk.|
000009c0  0a 20 20 20 41 6c 6c 20  73 6f 75 72 63 65 20 63  |.   All source c|
000009d0  6f 64 65 20 61 6e 64 20  74 68 65 20 72 65 73 75  |ode and the resu|
000009e0  6c 74 61 6e 74 20 6d 6f  64 75 6c 65 20 6d 75 73  |ltant module mus|
000009f0  74 20 62 65 20 64 69 73  74 72 69 62 75 74 65 64  |t be distributed|
00000a00  20 74 6f 67 65 74 68 65  72 2e 0a 0a 0a 43 6f 6e  | together....Con|
00000a10  74 61 63 74 0a 2d 2d 2d  2d 2d 2d 2d 0a 41 6e 79  |tact.-------.Any|
00000a20  20 63 6f 6d 6d 65 6e 74  73 2c 20 71 75 65 72 69  | comments, queri|
00000a30  65 73 2c 20 64 6f 6e 61  74 69 6f 6e 73 20 6f 72  |es, donations or|
00000a40  20 62 75 67 20 72 65 70  6f 72 74 73 20 63 61 6e  | bug reports can|
00000a50  20 62 65 20 73 65 6e 74  20 74 6f 20 3a 0a 0a 46  | be sent to :..F|
00000a60  69 64 6f 20 20 20 3a 20  4a 75 73 74 69 6e 20 46  |ido   : Justin F|
00000a70  6c 65 74 63 68 65 72 20  61 74 20 32 3a 32 35 35  |letcher at 2:255|
00000a80  2f 31 31 36 2e 33 0a 45  2d 4d 61 69 6c 20 3a 20  |/116.3.E-Mail : |
00000a90  47 65 72 70 68 40 65 73  73 65 78 2e 61 63 2e 75  |Gerph@essex.ac.u|
00000aa0  6b 0a 55 52 4c 20 20 20  20 3a 20 68 74 74 70 3a  |k.URL    : http:|
00000ab0  2f 2f 70 72 6f 6d 70 74  2e 65 73 73 65 78 2e 61  |//prompt.essex.a|
00000ac0  63 2e 75 6b 2f 75 73 65  72 73 2f 6a 72 66 6c 65  |c.uk/users/jrfle|
00000ad0  74 0a 49 52 43 20 20 20  20 3a 20 4f 6e 20 23 41  |t.IRC    : On #A|
00000ae0  63 6f 72 6e 20 61 73 20  47 65 72 70 68 0a 46 69  |corn as Gerph.Fi|
00000af0  6e 67 65 72 20 3a 20 66  69 6e 67 65 72 20 6a 72  |nger : finger jr|
00000b00  66 6c 65 74 40 70 6f 73  74 6d 61 6e 2e 65 73 73  |flet@postman.ess|
00000b10  65 78 2e 61 63 2e 75 6b  0a 54 65 6c 20 20 20 20  |ex.ac.uk.Tel    |
00000b20  3a 20 28 30 31 38 34 32  29 20 38 31 33 39 37 39  |: (01842) 813979|
00000b30  20 28 48 6f 6d 65 29 0a  20 20 20 20 20 20 20 3a  | (Home).       :|
00000b40  20 28 30 31 32 30 36 29  20 38 37 33 31 31 39 20  | (01206) 873119 |
00000b50  28 55 6e 69 29 0a 0a 53  6e 61 69 6c 20 4d 61 69  |(Uni)..Snail Mai|
00000b60  6c 20 3a 0a 20 20 20 20  4a 75 73 74 69 6e 20 46  |l :.    Justin F|
00000b70  6c 65 74 63 68 65 72 0a  20 20 20 20 94 47 61 6c  |letcher.    .Gal|
00000b80  61 64 72 69 65 6c 95 0a  20 20 20 20 31 37 62 20  |adriel..    17b |
00000b90  43 72 6f 6d 77 65 6c 6c  20 52 6f 61 64 2c 0a 20  |Cromwell Road,. |
00000ba0  20 20 20 57 65 65 74 69  6e 67 2c 0a 20 20 20 20  |   Weeting,.    |
00000bb0  42 72 61 6e 64 6f 6e 2c  0a 20 20 20 20 53 75 66  |Brandon,.    Suf|
00000bc0  66 6f 6c 6b 2e 0a 20 20  20 20 49 50 32 37 20 30  |folk..    IP27 0|
00000bd0  51 54 0a 0a 55 6e 69 20  61 64 64 72 65 73 73 20  |QT..Uni address |
00000be0  3a 20 28 79 65 61 72 20  31 39 39 35 2f 36 20 6f  |: (year 1995/6 o|
00000bf0  6e 6c 79 29 0a 20 20 20  20 45 64 64 69 6e 67 74  |nly).    Eddingt|
00000c00  6f 6e 20 54 6f 77 65 72  2c 0a 20 20 20 20 46 6c  |on Tower,.    Fl|
00000c10  61 74 20 39 2f 35 2c 0a  20 20 20 20 55 6e 69 76  |at 9/5,.    Univ|
00000c20  65 72 73 69 74 79 20 6f  66 20 45 73 73 65 78 2c  |ersity of Essex,|
00000c30  0a 20 20 20 20 57 69 76  65 6e 68 6f 65 20 50 61  |.    Wivenhoe Pa|
00000c40  72 6b 2c 0a 20 20 20 20  43 6f 6c 63 68 65 73 74  |rk,.    Colchest|
00000c50  65 72 2e 0a 20 20 20 20  43 4f 34 20 33 53 51 0a  |er..    CO4 3SQ.|
00000c60  0a 0a 48 69 73 74 6f 72  79 0a 2d 2d 2d 2d 2d 2d  |..History.------|
00000c70  2d 0a 56 65 72 73 69 6f  6e 20 31 2e 30 30 20 3a  |-.Version 1.00 :|
00000c80  20 32 33 20 4d 61 79 20  31 39 39 36 0a 20 20 20  | 23 May 1996.   |
00000c90  20 20 20 20 20 20 20 20  20 20 20 20 52 69 63 68  |            Rich|
00000ca0  61 72 64 2c 20 69 66 20  79 6f 75 20 61 73 6b 20  |ard, if you ask |
00000cb0  6d 65 20 74 6f 20 64 6f  20 61 6e 79 74 68 69 6e  |me to do anythin|
00000cc0  67 20 65 76 65 72 20 61  67 61 69 6e 2c 20 49 20  |g ever again, I |
00000cd0  73 77 65 61 72 20 49 27  6c 6c 0a 20 20 20 20 20  |swear I'll.     |
00000ce0  20 20 20 20 20 20 20 20  20 20 73 61 79 20 6e 6f  |          say no|
00000cf0  2e 20 48 6f 6e 65 73 74  20 3a 2d 29 0a 20 20 20  |. Honest :-).   |
00000d00  20 20 20 20 20 20 20 20  20 20 20 20 54 68 69 73  |            This|
00000d10  20 76 65 72 73 69 6f 6e  20 77 6f 72 6b 73 2e 2e  | version works..|
00000d20  2e 20 46 69 6e 61 6c 6c  79 20 3a 2d 29 0a        |. Finally :-).|
00000d2e