Home » Archimedes archive » Acorn User » AU 1996-08.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-08.adf » Regulars |
Filename: | StarInfo/Fletcher/!Help |
Read OK: | ✔ |
File size: | 0E5E bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
Ellipsis ======== Version 1.00 (11 Nov 1995) Version 1.01 (12 Nov 1995) Introduction ------------ I've found that when I work on the PC's in the Computer Lab there is no easy way to enter the � character, and so I have to type ... and this annoys me. What annoys me more is that when I come back to my A5000 I do the same, even though my ExtraKeys module performs the same feat by Alt-. However, if you use so wordprocessors on the PC you will see ... converted to � automatically. Wouldn't that be nice on the Arc ? Yes ? Well here it is. Ellipsis is the correct name for the � sequence, indicating that there is a pause or that information has been omitted. So, in any application if you type . three times whilst Ellipsis is installed you will find that it is replaced by � 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 !Run code file. How it works ------------ The module intercepts the insert vector and traps inserts into the keyboard buffer (single byte, not multiples) and counts . sequences, resetting to 0 on any other press. Once the third . is received it is trapped and not passed on to the main routine. Instead a OS_CallAfter routine is used to insert the characters into the buffer. OS_CallAfter is set to 5cs intervals, so the whole process takes around 15cs to perform. The actual sequence that is inserted is Delete, Delete, Control code (meaning next character is literal, not function key) then the ellipsis character. Obviously, this may have strange effects on routines using . for some specific task where no other key is used in between. However, I believe that the benefits outway the costs. 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. Currently, it is under development and requires a lot of work before it will be released in any form. As such, the patch file is mostly useless, but must be distributed with the resultant module. All source code an the resultant module must be distributed together. Contact ------- Any comments, queries, donations or bug reports can be sent to : E-Mail : JRFlet@Essex.ac.uk URL : http://cswww2.essex.ac.uk/users/jrflet 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 : 11 Nov 1995 First version written, inserting keys within the main routine. Crashed due to not setting SVC mode and storing link register. Would not work with Impression Style for obscure reasons. Version 1.01 : 12 Nov 1995 Recoded using CallEvery. Couldn't terminate calling, so used CallAfter instead. Setting SVC mode and stacking link crashed because r8 and r9 were not restored. All bugs fixed, and works correctly with Impression Style.
00000000 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | * 00000020 20 20 20 20 45 6c 6c 69 70 73 69 73 0a 20 20 20 | Ellipsis. | 00000030 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | * 00000050 20 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 31 31 20 4e 6f 76 20 |on 1.00 (11 Nov | 00000070 31 39 39 35 29 0a 56 65 72 73 69 6f 6e 20 31 2e |1995).Version 1.| 00000080 30 31 20 28 31 32 20 4e 6f 76 20 31 39 39 35 29 |01 (12 Nov 1995)| 00000090 0a 20 20 20 20 20 0a 49 6e 74 72 6f 64 75 63 74 |. .Introduct| 000000a0 69 6f 6e 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |ion.------------| 000000b0 0a 49 27 76 65 20 66 6f 75 6e 64 20 74 68 61 74 |.I've found that| 000000c0 20 77 68 65 6e 20 49 20 77 6f 72 6b 20 6f 6e 20 | when I work on | 000000d0 74 68 65 20 50 43 27 73 20 69 6e 20 74 68 65 20 |the PC's in the | 000000e0 43 6f 6d 70 75 74 65 72 20 4c 61 62 20 74 68 65 |Computer Lab the| 000000f0 72 65 20 69 73 20 6e 6f 0a 65 61 73 79 20 77 61 |re is no.easy wa| 00000100 79 20 74 6f 20 65 6e 74 65 72 20 74 68 65 20 8c |y to enter the .| 00000110 20 63 68 61 72 61 63 74 65 72 2c 20 61 6e 64 20 | character, and | 00000120 73 6f 20 49 20 68 61 76 65 20 74 6f 20 74 79 70 |so I have to typ| 00000130 65 20 2e 2e 2e 20 61 6e 64 20 74 68 69 73 20 61 |e ... and this a| 00000140 6e 6e 6f 79 73 0a 6d 65 2e 20 57 68 61 74 20 61 |nnoys.me. What a| 00000150 6e 6e 6f 79 73 20 6d 65 20 6d 6f 72 65 20 69 73 |nnoys me more is| 00000160 20 74 68 61 74 20 77 68 65 6e 20 49 20 63 6f 6d | that when I com| 00000170 65 20 62 61 63 6b 20 74 6f 20 6d 79 20 41 35 30 |e back to my A50| 00000180 30 30 20 49 20 64 6f 20 74 68 65 20 73 61 6d 65 |00 I do the same| 00000190 2c 0a 65 76 65 6e 20 74 68 6f 75 67 68 20 6d 79 |,.even though my| 000001a0 20 45 78 74 72 61 4b 65 79 73 20 6d 6f 64 75 6c | ExtraKeys modul| 000001b0 65 20 70 65 72 66 6f 72 6d 73 20 74 68 65 20 73 |e performs the s| 000001c0 61 6d 65 20 66 65 61 74 20 62 79 20 41 6c 74 2d |ame feat by Alt-| 000001d0 2e 0a 0a 48 6f 77 65 76 65 72 2c 20 69 66 20 79 |...However, if y| 000001e0 6f 75 20 75 73 65 20 73 6f 20 77 6f 72 64 70 72 |ou use so wordpr| 000001f0 6f 63 65 73 73 6f 72 73 20 6f 6e 20 74 68 65 20 |ocessors on the | 00000200 50 43 20 79 6f 75 20 77 69 6c 6c 20 73 65 65 20 |PC you will see | 00000210 2e 2e 2e 20 63 6f 6e 76 65 72 74 65 64 20 74 6f |... converted to| 00000220 0a 8c 20 61 75 74 6f 6d 61 74 69 63 61 6c 6c 79 |.. automatically| 00000230 2e 20 57 6f 75 6c 64 6e 27 74 20 74 68 61 74 20 |. Wouldn't that | 00000240 62 65 20 6e 69 63 65 20 6f 6e 20 74 68 65 20 41 |be nice on the A| 00000250 72 63 20 3f 20 59 65 73 20 3f 20 57 65 6c 6c 20 |rc ? Yes ? Well | 00000260 68 65 72 65 20 69 74 20 69 73 2e 0a 0a 45 6c 6c |here it is...Ell| 00000270 69 70 73 69 73 20 69 73 20 74 68 65 20 63 6f 72 |ipsis is the cor| 00000280 72 65 63 74 20 6e 61 6d 65 20 66 6f 72 20 74 68 |rect name for th| 00000290 65 20 8c 20 73 65 71 75 65 6e 63 65 2c 20 69 6e |e . sequence, in| 000002a0 64 69 63 61 74 69 6e 67 20 74 68 61 74 20 74 68 |dicating that th| 000002b0 65 72 65 20 69 73 20 61 0a 70 61 75 73 65 20 6f |ere is a.pause o| 000002c0 72 20 74 68 61 74 20 69 6e 66 6f 72 6d 61 74 69 |r that informati| 000002d0 6f 6e 20 68 61 73 20 62 65 65 6e 20 6f 6d 69 74 |on has been omit| 000002e0 74 65 64 2e 20 53 6f 2c 20 69 6e 20 61 6e 79 20 |ted. So, in any | 000002f0 61 70 70 6c 69 63 61 74 69 6f 6e 20 69 66 20 79 |application if y| 00000300 6f 75 0a 74 79 70 65 20 2e 20 74 68 72 65 65 20 |ou.type . three | 00000310 74 69 6d 65 73 20 77 68 69 6c 73 74 20 45 6c 6c |times whilst Ell| 00000320 69 70 73 69 73 20 69 73 20 69 6e 73 74 61 6c 6c |ipsis is install| 00000330 65 64 20 79 6f 75 20 77 69 6c 6c 20 66 69 6e 64 |ed you will find| 00000340 20 74 68 61 74 20 69 74 20 69 73 0a 72 65 70 6c | that it is.repl| 00000350 61 63 65 64 20 62 79 20 8c 0a 0a 55 73 61 67 65 |aced by ...Usage| 00000360 0a 2d 2d 2d 2d 2d 0a 20 20 20 52 75 6e 20 74 68 |.-----. Run th| 00000370 65 20 21 43 72 65 61 74 65 20 66 69 6c 65 2e 20 |e !Create file. | 00000380 54 68 61 74 27 73 20 69 74 2e 0a 20 20 20 48 6f |That's it.. Ho| 00000390 70 65 66 75 6c 6c 79 2c 20 74 68 65 20 63 6f 64 |pefully, the cod| 000003a0 65 20 77 69 6c 6c 20 62 65 20 61 73 73 65 6d 62 |e will be assemb| 000003b0 6c 65 64 20 77 69 74 68 20 6e 6f 20 65 72 72 6f |led with no erro| 000003c0 72 73 20 61 6e 64 20 61 6c 6c 20 74 68 61 74 20 |rs and all that | 000003d0 69 6e 0a 66 75 74 75 72 65 20 77 69 6c 6c 20 62 |in.future will b| 000003e0 65 20 72 65 71 75 69 72 65 64 20 69 73 20 74 68 |e required is th| 000003f0 65 20 72 75 6e 6e 69 6e 67 20 6f 66 20 74 68 65 |e running of the| 00000400 20 21 52 75 6e 20 63 6f 64 65 20 66 69 6c 65 2e | !Run code file.| 00000410 0a 0a 20 20 20 20 0a 48 6f 77 20 69 74 20 77 6f |.. .How it wo| 00000420 72 6b 73 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |rks.------------| 00000430 0a 54 68 65 20 6d 6f 64 75 6c 65 20 69 6e 74 65 |.The module inte| 00000440 72 63 65 70 74 73 20 74 68 65 20 69 6e 73 65 72 |rcepts the inser| 00000450 74 20 76 65 63 74 6f 72 20 61 6e 64 20 74 72 61 |t vector and tra| 00000460 70 73 20 69 6e 73 65 72 74 73 20 69 6e 74 6f 20 |ps inserts into | 00000470 74 68 65 20 6b 65 79 62 6f 61 72 64 0a 62 75 66 |the keyboard.buf| 00000480 66 65 72 20 28 73 69 6e 67 6c 65 20 62 79 74 65 |fer (single byte| 00000490 2c 20 6e 6f 74 20 6d 75 6c 74 69 70 6c 65 73 29 |, not multiples)| 000004a0 20 61 6e 64 20 63 6f 75 6e 74 73 20 2e 20 73 65 | and counts . se| 000004b0 71 75 65 6e 63 65 73 2c 20 72 65 73 65 74 74 69 |quences, resetti| 000004c0 6e 67 20 74 6f 20 30 20 6f 6e 0a 61 6e 79 20 6f |ng to 0 on.any o| 000004d0 74 68 65 72 20 70 72 65 73 73 2e 20 4f 6e 63 65 |ther press. Once| 000004e0 20 74 68 65 20 74 68 69 72 64 20 2e 20 69 73 20 | the third . is | 000004f0 72 65 63 65 69 76 65 64 20 69 74 20 69 73 20 74 |received it is t| 00000500 72 61 70 70 65 64 20 61 6e 64 20 6e 6f 74 20 70 |rapped and not p| 00000510 61 73 73 65 64 20 6f 6e 0a 74 6f 20 74 68 65 20 |assed on.to the | 00000520 6d 61 69 6e 20 72 6f 75 74 69 6e 65 2e 20 49 6e |main routine. In| 00000530 73 74 65 61 64 20 61 20 4f 53 5f 43 61 6c 6c 41 |stead a OS_CallA| 00000540 66 74 65 72 20 72 6f 75 74 69 6e 65 20 69 73 20 |fter routine is | 00000550 75 73 65 64 20 74 6f 20 69 6e 73 65 72 74 20 74 |used to insert t| 00000560 68 65 0a 63 68 61 72 61 63 74 65 72 73 20 69 6e |he.characters in| 00000570 74 6f 20 74 68 65 20 62 75 66 66 65 72 2e 20 4f |to the buffer. O| 00000580 53 5f 43 61 6c 6c 41 66 74 65 72 20 69 73 20 73 |S_CallAfter is s| 00000590 65 74 20 74 6f 20 35 63 73 20 69 6e 74 65 72 76 |et to 5cs interv| 000005a0 61 6c 73 2c 20 73 6f 20 74 68 65 0a 77 68 6f 6c |als, so the.whol| 000005b0 65 20 70 72 6f 63 65 73 73 20 74 61 6b 65 73 20 |e process takes | 000005c0 61 72 6f 75 6e 64 20 31 35 63 73 20 74 6f 20 70 |around 15cs to p| 000005d0 65 72 66 6f 72 6d 2e 20 54 68 65 20 61 63 74 75 |erform. The actu| 000005e0 61 6c 20 73 65 71 75 65 6e 63 65 20 74 68 61 74 |al sequence that| 000005f0 20 69 73 0a 69 6e 73 65 72 74 65 64 20 69 73 20 | is.inserted is | 00000600 44 65 6c 65 74 65 2c 20 44 65 6c 65 74 65 2c 20 |Delete, Delete, | 00000610 43 6f 6e 74 72 6f 6c 20 63 6f 64 65 20 28 6d 65 |Control code (me| 00000620 61 6e 69 6e 67 20 6e 65 78 74 20 63 68 61 72 61 |aning next chara| 00000630 63 74 65 72 20 69 73 20 6c 69 74 65 72 61 6c 2c |cter is literal,| 00000640 0a 6e 6f 74 20 66 75 6e 63 74 69 6f 6e 20 6b 65 |.not function ke| 00000650 79 29 20 74 68 65 6e 20 74 68 65 20 65 6c 6c 69 |y) then the elli| 00000660 70 73 69 73 20 63 68 61 72 61 63 74 65 72 2e 0a |psis character..| 00000670 0a 4f 62 76 69 6f 75 73 6c 79 2c 20 74 68 69 73 |.Obviously, this| 00000680 20 6d 61 79 20 68 61 76 65 20 73 74 72 61 6e 67 | may have strang| 00000690 65 20 65 66 66 65 63 74 73 20 6f 6e 20 72 6f 75 |e effects on rou| 000006a0 74 69 6e 65 73 20 75 73 69 6e 67 20 2e 20 66 6f |tines using . fo| 000006b0 72 20 73 6f 6d 65 0a 73 70 65 63 69 66 69 63 20 |r some.specific | 000006c0 74 61 73 6b 20 77 68 65 72 65 20 6e 6f 20 6f 74 |task where no ot| 000006d0 68 65 72 20 6b 65 79 20 69 73 20 75 73 65 64 20 |her key is used | 000006e0 69 6e 20 62 65 74 77 65 65 6e 2e 20 48 6f 77 65 |in between. Howe| 000006f0 76 65 72 2c 20 49 20 62 65 6c 69 65 76 65 20 74 |ver, I believe t| 00000700 68 61 74 0a 74 68 65 20 62 65 6e 65 66 69 74 73 |hat.the benefits| 00000710 20 6f 75 74 77 61 79 20 74 68 65 20 63 6f 73 74 | outway the cost| 00000720 73 2e 0a 0a 0a 44 69 73 63 6c 61 69 6d 65 72 0a |s....Disclaimer.| 00000730 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 20 20 54 68 65 |----------. The| 00000740 20 61 75 74 68 6f 72 20 61 63 63 65 70 74 73 20 | author accepts | 00000750 6e 6f 20 72 65 73 70 6f 6e 73 69 62 69 6c 69 74 |no responsibilit| 00000760 79 20 66 6f 72 20 61 6e 79 20 70 72 6f 62 6c 65 |y for any proble| 00000770 6d 73 20 77 68 69 63 68 20 74 68 69 73 0a 61 70 |ms which this.ap| 00000780 70 6c 69 63 61 74 69 6f 6e 20 6d 61 79 20 63 61 |plication may ca| 00000790 75 73 65 20 6f 72 20 6c 6f 73 73 20 6f 66 20 64 |use or loss of d| 000007a0 61 74 61 20 72 65 73 75 6c 74 69 6e 67 20 69 6e |ata resulting in| 000007b0 20 69 74 73 20 75 73 65 2e 20 54 68 69 73 20 61 | its use. This a| 000007c0 70 70 6c 69 63 61 74 69 6f 6e 0a 69 73 20 50 75 |pplication.is Pu| 000007d0 62 6c 69 63 20 44 6f 6d 61 69 6e 2e 20 54 68 69 |blic Domain. Thi| 000007e0 73 20 6d 65 61 6e 73 20 74 68 61 74 20 69 74 20 |s means that it | 000007f0 6d 61 79 20 62 65 20 64 69 73 74 72 69 62 75 74 |may be distribut| 00000800 65 64 2c 20 73 6f 20 6c 6f 6e 67 20 61 73 20 6e |ed, so long as n| 00000810 6f 20 63 68 61 72 67 65 0a 6f 74 68 65 72 20 74 |o charge.other t| 00000820 68 61 6e 20 63 6f 70 79 69 6e 67 20 63 6f 73 74 |han copying cost| 00000830 73 20 61 72 65 20 63 68 61 72 67 65 64 20 66 6f |s are charged fo| 00000840 72 20 69 74 2e 0a 20 20 0a 0a 53 6f 75 72 63 65 |r it.. ..Source| 00000850 20 63 6f 64 65 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d | code.----------| 00000860 2d 0a 20 20 20 54 68 69 73 20 70 72 6f 67 72 61 |-. This progra| 00000870 6d 20 72 65 71 75 69 72 65 73 20 74 68 65 20 21 |m requires the !| 00000880 4a 46 50 61 74 63 68 20 70 72 65 2d 61 73 73 65 |JFPatch pre-asse| 00000890 6d 62 6c 65 72 20 74 6f 20 6d 61 6b 65 20 74 68 |mbler to make th| 000008a0 65 20 63 6f 64 65 2e 20 54 68 69 73 20 69 73 0a |e code. This is.| 000008b0 61 20 73 69 6d 70 6c 65 20 74 65 78 74 2d 74 6f |a simple text-to| 000008c0 2d 62 61 73 69 63 20 61 73 73 65 6d 62 6c 65 72 |-basic assembler| 000008d0 20 77 68 69 63 68 20 74 61 6b 65 73 20 61 20 74 | which takes a t| 000008e0 65 78 74 20 61 73 73 65 6d 62 6c 65 72 20 66 69 |ext assembler fi| 000008f0 6c 65 2c 20 6d 61 6b 65 73 20 61 0a 62 61 73 69 |le, makes a.basi| 00000900 63 20 70 72 6f 67 72 61 6d 20 66 72 6f 6d 20 69 |c program from i| 00000910 74 20 74 6f 20 61 73 73 65 6d 62 6c 65 2c 20 61 |t to assemble, a| 00000920 73 73 65 6d 62 6c 65 73 20 69 74 20 61 6e 64 20 |ssembles it and | 00000930 72 65 74 75 72 6e 73 20 61 6e 79 20 65 72 72 6f |returns any erro| 00000940 72 73 2e 0a 43 75 72 72 65 6e 74 6c 79 2c 20 69 |rs..Currently, i| 00000950 74 20 69 73 20 75 6e 64 65 72 20 64 65 76 65 6c |t is under devel| 00000960 6f 70 6d 65 6e 74 20 61 6e 64 20 72 65 71 75 69 |opment and requi| 00000970 72 65 73 20 61 20 6c 6f 74 20 6f 66 20 77 6f 72 |res a lot of wor| 00000980 6b 20 62 65 66 6f 72 65 20 69 74 20 77 69 6c 6c |k before it will| 00000990 0a 62 65 20 72 65 6c 65 61 73 65 64 20 69 6e 20 |.be released in | 000009a0 61 6e 79 20 66 6f 72 6d 2e 20 41 73 20 73 75 63 |any form. As suc| 000009b0 68 2c 20 74 68 65 20 70 61 74 63 68 20 66 69 6c |h, the patch fil| 000009c0 65 20 69 73 20 6d 6f 73 74 6c 79 20 75 73 65 6c |e is mostly usel| 000009d0 65 73 73 2c 20 62 75 74 20 6d 75 73 74 0a 62 65 |ess, but must.be| 000009e0 20 64 69 73 74 72 69 62 75 74 65 64 20 77 69 74 | distributed wit| 000009f0 68 20 74 68 65 20 72 65 73 75 6c 74 61 6e 74 20 |h the resultant | 00000a00 6d 6f 64 75 6c 65 2e 0a 20 20 20 41 6c 6c 20 73 |module.. All s| 00000a10 6f 75 72 63 65 20 63 6f 64 65 20 61 6e 20 74 68 |ource code an th| 00000a20 65 20 72 65 73 75 6c 74 61 6e 74 20 6d 6f 64 75 |e resultant modu| 00000a30 6c 65 20 6d 75 73 74 20 62 65 20 64 69 73 74 72 |le must be distr| 00000a40 69 62 75 74 65 64 20 74 6f 67 65 74 68 65 72 2e |ibuted together.| 00000a50 0a 0a 0a 43 6f 6e 74 61 63 74 0a 2d 2d 2d 2d 2d |...Contact.-----| 00000a60 2d 2d 0a 41 6e 79 20 63 6f 6d 6d 65 6e 74 73 2c |--.Any comments,| 00000a70 20 71 75 65 72 69 65 73 2c 20 64 6f 6e 61 74 69 | queries, donati| 00000a80 6f 6e 73 20 6f 72 20 62 75 67 20 72 65 70 6f 72 |ons or bug repor| 00000a90 74 73 20 63 61 6e 20 62 65 20 73 65 6e 74 20 74 |ts can be sent t| 00000aa0 6f 20 3a 0a 0a 45 2d 4d 61 69 6c 20 3a 20 4a 52 |o :..E-Mail : JR| 00000ab0 46 6c 65 74 40 45 73 73 65 78 2e 61 63 2e 75 6b |Flet@Essex.ac.uk| 00000ac0 0a 55 52 4c 20 20 20 20 3a 20 68 74 74 70 3a 2f |.URL : http:/| 00000ad0 2f 63 73 77 77 77 32 2e 65 73 73 65 78 2e 61 63 |/cswww2.essex.ac| 00000ae0 2e 75 6b 2f 75 73 65 72 73 2f 6a 72 66 6c 65 74 |.uk/users/jrflet| 00000af0 0a 0a 53 6e 61 69 6c 20 4d 61 69 6c 20 3a 0a 20 |..Snail Mail :. | 00000b00 20 20 20 4a 75 73 74 69 6e 20 46 6c 65 74 63 68 | Justin Fletch| 00000b10 65 72 0a 20 20 20 20 94 47 61 6c 61 64 72 69 65 |er. .Galadrie| 00000b20 6c 95 0a 20 20 20 20 31 37 62 20 43 72 6f 6d 77 |l.. 17b Cromw| 00000b30 65 6c 6c 20 52 6f 61 64 2c 0a 20 20 20 20 57 65 |ell Road,. We| 00000b40 65 74 69 6e 67 2c 0a 20 20 20 20 42 72 61 6e 64 |eting,. Brand| 00000b50 6f 6e 2c 0a 20 20 20 20 53 75 66 66 6f 6c 6b 2e |on,. Suffolk.| 00000b60 0a 20 20 20 20 49 50 32 37 20 30 51 54 0a 0a 55 |. IP27 0QT..U| 00000b70 6e 69 20 61 64 64 72 65 73 73 20 3a 20 28 79 65 |ni address : (ye| 00000b80 61 72 20 31 39 39 35 2f 36 20 6f 6e 6c 79 29 0a |ar 1995/6 only).| 00000b90 20 20 20 20 45 64 64 69 6e 67 74 6f 6e 20 54 6f | Eddington To| 00000ba0 77 65 72 2c 0a 20 20 20 20 46 6c 61 74 20 39 2f |wer,. Flat 9/| 00000bb0 35 2c 0a 20 20 20 20 55 6e 69 76 65 72 73 69 74 |5,. Universit| 00000bc0 79 20 6f 66 20 45 73 73 65 78 2c 0a 20 20 20 20 |y of Essex,. | 00000bd0 57 69 76 65 6e 68 6f 65 20 50 61 72 6b 2c 0a 20 |Wivenhoe Park,. | 00000be0 20 20 20 43 6f 6c 63 68 65 73 74 65 72 2e 0a 20 | Colchester.. | 00000bf0 20 20 20 43 4f 34 20 33 53 51 0a 0a 0a 48 69 73 | CO4 3SQ...His| 00000c00 74 6f 72 79 0a 2d 2d 2d 2d 2d 2d 2d 0a 56 65 72 |tory.-------.Ver| 00000c10 73 69 6f 6e 20 31 2e 30 30 20 3a 20 31 31 20 4e |sion 1.00 : 11 N| 00000c20 6f 76 20 31 39 39 35 0a 20 20 20 20 20 20 20 20 |ov 1995. | 00000c30 20 20 20 20 20 20 20 46 69 72 73 74 20 76 65 72 | First ver| 00000c40 73 69 6f 6e 20 77 72 69 74 74 65 6e 2c 20 69 6e |sion written, in| 00000c50 73 65 72 74 69 6e 67 20 6b 65 79 73 20 77 69 74 |serting keys wit| 00000c60 68 69 6e 20 74 68 65 20 6d 61 69 6e 20 72 6f 75 |hin the main rou| 00000c70 74 69 6e 65 2e 0a 20 20 20 20 20 20 20 20 20 20 |tine.. | 00000c80 20 20 20 20 20 43 72 61 73 68 65 64 20 64 75 65 | Crashed due| 00000c90 20 74 6f 20 6e 6f 74 20 73 65 74 74 69 6e 67 20 | to not setting | 00000ca0 53 56 43 20 6d 6f 64 65 20 61 6e 64 20 73 74 6f |SVC mode and sto| 00000cb0 72 69 6e 67 20 6c 69 6e 6b 20 72 65 67 69 73 74 |ring link regist| 00000cc0 65 72 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 |er.. | 00000cd0 20 20 20 57 6f 75 6c 64 20 6e 6f 74 20 77 6f 72 | Would not wor| 00000ce0 6b 20 77 69 74 68 20 49 6d 70 72 65 73 73 69 6f |k with Impressio| 00000cf0 6e 20 53 74 79 6c 65 20 66 6f 72 20 6f 62 73 63 |n Style for obsc| 00000d00 75 72 65 20 72 65 61 73 6f 6e 73 2e 0a 20 20 20 |ure reasons.. | 00000d10 20 20 20 20 20 20 20 20 20 20 20 20 0a 56 65 72 | .Ver| 00000d20 73 69 6f 6e 20 31 2e 30 31 20 3a 20 31 32 20 4e |sion 1.01 : 12 N| 00000d30 6f 76 20 31 39 39 35 0a 20 20 20 20 20 20 20 20 |ov 1995. | 00000d40 20 20 20 20 20 20 20 52 65 63 6f 64 65 64 20 75 | Recoded u| 00000d50 73 69 6e 67 20 43 61 6c 6c 45 76 65 72 79 2e 20 |sing CallEvery. | 00000d60 43 6f 75 6c 64 6e 27 74 20 74 65 72 6d 69 6e 61 |Couldn't termina| 00000d70 74 65 20 63 61 6c 6c 69 6e 67 2c 20 73 6f 0a 20 |te calling, so. | 00000d80 20 20 20 20 20 20 20 20 20 20 20 20 20 20 75 73 | us| 00000d90 65 64 20 43 61 6c 6c 41 66 74 65 72 20 69 6e 73 |ed CallAfter ins| 00000da0 74 65 61 64 2e 0a 20 20 20 20 20 20 20 20 20 20 |tead.. | 00000db0 20 20 20 20 20 53 65 74 74 69 6e 67 20 53 56 43 | Setting SVC| 00000dc0 20 6d 6f 64 65 20 61 6e 64 20 73 74 61 63 6b 69 | mode and stacki| 00000dd0 6e 67 20 6c 69 6e 6b 20 63 72 61 73 68 65 64 20 |ng link crashed | 00000de0 62 65 63 61 75 73 65 20 72 38 20 61 6e 64 20 72 |because r8 and r| 00000df0 39 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |9. | 00000e00 20 77 65 72 65 20 6e 6f 74 20 72 65 73 74 6f 72 | were not restor| 00000e10 65 64 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 |ed.. | 00000e20 20 20 20 41 6c 6c 20 62 75 67 73 20 66 69 78 65 | All bugs fixe| 00000e30 64 2c 20 61 6e 64 20 77 6f 72 6b 73 20 63 6f 72 |d, and works cor| 00000e40 72 65 63 74 6c 79 20 77 69 74 68 20 49 6d 70 72 |rectly with Impr| 00000e50 65 73 73 69 6f 6e 20 53 74 79 6c 65 2e 0a |ession Style..| 00000e5e