Home » Personal collection » Acorn hard disk » apps » web » ReadMeDocs/JPEG_Fix

ReadMeDocs/JPEG_Fix

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 » Personal collection » Acorn hard disk » apps » web
Filename: ReadMeDocs/JPEG_Fix
Read OK:
File size: 0AAF bytes
Load address: 0000
Exec address: 0000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
JPEG_Fix
========

This file documents how to make changes to ChangeFSI so that it can
recognise and handle "progressive JPEG" images.  The instructions are
adapted from my posting on comp.sys.acorn.apps & comp.sys.acorn.misc
in the middle of October 1996.

Contents:
	Patching ChangeFSI
	Installing the new JPEG software
	And Finally ...
	Technical Notes


Patching ChangeFSI
==================

Making sure you start with version 1.15 (although it may work for other
versions too), load !ChangeFSI.ChangeFSI into your favourite BASIC editor
(keeping a backup copy!) and make the following changes:

Find the line which says the following (If you search for the string
"JFIF" it's a couple of lines below it)
IFcache%<EXT#c% THEN

Change this to say:
IFcache%<EXT#c% OR ASCMID$(S$,12,1)>1 OR FNsnb_needdjpeg(c%) THEN

(DON'T have any trailing spaces on the line or it won't work!)

Add at the end of the program:

DEFFNsnb_next(c%)
LOCALv%:WHILEBGET#c%<>255 AND NOTEOF#c%:ENDWHILE:IFEOF#c%:=&100
REPEAT:v%=BGET#c%:UNTILEOF#c% OR v%<>255:IF EOF#c%:v%=256
=v%
DEFPROCsnb_skip(c%)
LOCALv%,w%:v%=PTR#c%:w%=BGET#c%:w%=(w%*256+BGET#c%)
PTR#c%=v%+w%:ENDPROC
DEFFNsnb_needdjpeg(c%)
LOCALsz%:REM Not Acorn code - added. Assumes file is JPEG!
PTR#c%=2:REPEAT:sz%=FNsnb_next(c%):IFsz%=&C0 OR sz%>255:=FALSE
IFsz%>&C0 ANDsz%<&D0 ANDsz%<>&C4 ANDsz%<>&CC:=TRUE:REM M_SOFn
IFsz%>&E0 AND sz%<&F0:=TRUE: REM M_APPn
PROCsnb_skip(c%):UNTILEOF#c%:=FALSE

Save this, keeping a backup of the original.  That completes the
changes to the ChangeFSI program itself.  Now you need to install
the new JPEG software.


Installing the new JPEG software
================================

Open the "djpeg" directory which was in the root of the ArcWeb archive
and copy the djpeg program that you find inside to somewhere on Run$Path
so that ChangeFSI can see it.  (You may choose to copy it into the
!ChangeFSI directory itself (or !ChangeFSI.djpeg directory)


And Finally ...
===============

That should do it - it now works for me.  The following text is a
description of how it works and reading & understanding of it is not
necessary :-)


Technical Notes
===============

This change allows ChangeFSI to spot non-baseline JPEGs and farms that out
to djpeg.  Note that even djpeg doesn't handle some of the arithmetic
encodings, but it does allow it to handle images that it otherwise can't.
Note that all my new functions are prefixed "snb_" to avoid name clashes.
Non-JFIF files are trapped here too since anything with a filetype of &C85
is accepted as JPEG. If ChangeFSI is ever extended to supported more SOFn
markers, then these can simply be trapped within the REPEAT loop and
return FALSE for those SOFn types.


-- 
Stewart Brodie
17th October 1996
00000000  0a 4a 50 45 47 5f 46 69  78 0a 3d 3d 3d 3d 3d 3d  |.JPEG_Fix.======|
00000010  3d 3d 0a 0a 54 68 69 73  20 66 69 6c 65 20 64 6f  |==..This file do|
00000020  63 75 6d 65 6e 74 73 20  68 6f 77 20 74 6f 20 6d  |cuments how to m|
00000030  61 6b 65 20 63 68 61 6e  67 65 73 20 74 6f 20 43  |ake changes to C|
00000040  68 61 6e 67 65 46 53 49  20 73 6f 20 74 68 61 74  |hangeFSI so that|
00000050  20 69 74 20 63 61 6e 0a  72 65 63 6f 67 6e 69 73  | it can.recognis|
00000060  65 20 61 6e 64 20 68 61  6e 64 6c 65 20 22 70 72  |e and handle "pr|
00000070  6f 67 72 65 73 73 69 76  65 20 4a 50 45 47 22 20  |ogressive JPEG" |
00000080  69 6d 61 67 65 73 2e 20  20 54 68 65 20 69 6e 73  |images.  The ins|
00000090  74 72 75 63 74 69 6f 6e  73 20 61 72 65 0a 61 64  |tructions are.ad|
000000a0  61 70 74 65 64 20 66 72  6f 6d 20 6d 79 20 70 6f  |apted from my po|
000000b0  73 74 69 6e 67 20 6f 6e  20 63 6f 6d 70 2e 73 79  |sting on comp.sy|
000000c0  73 2e 61 63 6f 72 6e 2e  61 70 70 73 20 26 20 63  |s.acorn.apps & c|
000000d0  6f 6d 70 2e 73 79 73 2e  61 63 6f 72 6e 2e 6d 69  |omp.sys.acorn.mi|
000000e0  73 63 0a 69 6e 20 74 68  65 20 6d 69 64 64 6c 65  |sc.in the middle|
000000f0  20 6f 66 20 4f 63 74 6f  62 65 72 20 31 39 39 36  | of October 1996|
00000100  2e 0a 0a 43 6f 6e 74 65  6e 74 73 3a 0a 09 50 61  |...Contents:..Pa|
00000110  74 63 68 69 6e 67 20 43  68 61 6e 67 65 46 53 49  |tching ChangeFSI|
00000120  0a 09 49 6e 73 74 61 6c  6c 69 6e 67 20 74 68 65  |..Installing the|
00000130  20 6e 65 77 20 4a 50 45  47 20 73 6f 66 74 77 61  | new JPEG softwa|
00000140  72 65 0a 09 41 6e 64 20  46 69 6e 61 6c 6c 79 20  |re..And Finally |
00000150  2e 2e 2e 0a 09 54 65 63  68 6e 69 63 61 6c 20 4e  |.....Technical N|
00000160  6f 74 65 73 0a 0a 0a 50  61 74 63 68 69 6e 67 20  |otes...Patching |
00000170  43 68 61 6e 67 65 46 53  49 0a 3d 3d 3d 3d 3d 3d  |ChangeFSI.======|
00000180  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 0a 0a 4d 61  |============..Ma|
00000190  6b 69 6e 67 20 73 75 72  65 20 79 6f 75 20 73 74  |king sure you st|
000001a0  61 72 74 20 77 69 74 68  20 76 65 72 73 69 6f 6e  |art with version|
000001b0  20 31 2e 31 35 20 28 61  6c 74 68 6f 75 67 68 20  | 1.15 (although |
000001c0  69 74 20 6d 61 79 20 77  6f 72 6b 20 66 6f 72 20  |it may work for |
000001d0  6f 74 68 65 72 0a 76 65  72 73 69 6f 6e 73 20 74  |other.versions t|
000001e0  6f 6f 29 2c 20 6c 6f 61  64 20 21 43 68 61 6e 67  |oo), load !Chang|
000001f0  65 46 53 49 2e 43 68 61  6e 67 65 46 53 49 20 69  |eFSI.ChangeFSI i|
00000200  6e 74 6f 20 79 6f 75 72  20 66 61 76 6f 75 72 69  |nto your favouri|
00000210  74 65 20 42 41 53 49 43  20 65 64 69 74 6f 72 0a  |te BASIC editor.|
00000220  28 6b 65 65 70 69 6e 67  20 61 20 62 61 63 6b 75  |(keeping a backu|
00000230  70 20 63 6f 70 79 21 29  20 61 6e 64 20 6d 61 6b  |p copy!) and mak|
00000240  65 20 74 68 65 20 66 6f  6c 6c 6f 77 69 6e 67 20  |e the following |
00000250  63 68 61 6e 67 65 73 3a  0a 0a 46 69 6e 64 20 74  |changes:..Find t|
00000260  68 65 20 6c 69 6e 65 20  77 68 69 63 68 20 73 61  |he line which sa|
00000270  79 73 20 74 68 65 20 66  6f 6c 6c 6f 77 69 6e 67  |ys the following|
00000280  20 28 49 66 20 79 6f 75  20 73 65 61 72 63 68 20  | (If you search |
00000290  66 6f 72 20 74 68 65 20  73 74 72 69 6e 67 0a 22  |for the string."|
000002a0  4a 46 49 46 22 20 69 74  27 73 20 61 20 63 6f 75  |JFIF" it's a cou|
000002b0  70 6c 65 20 6f 66 20 6c  69 6e 65 73 20 62 65 6c  |ple of lines bel|
000002c0  6f 77 20 69 74 29 0a 49  46 63 61 63 68 65 25 3c  |ow it).IFcache%<|
000002d0  45 58 54 23 63 25 20 54  48 45 4e 0a 0a 43 68 61  |EXT#c% THEN..Cha|
000002e0  6e 67 65 20 74 68 69 73  20 74 6f 20 73 61 79 3a  |nge this to say:|
000002f0  0a 49 46 63 61 63 68 65  25 3c 45 58 54 23 63 25  |.IFcache%<EXT#c%|
00000300  20 4f 52 20 41 53 43 4d  49 44 24 28 53 24 2c 31  | OR ASCMID$(S$,1|
00000310  32 2c 31 29 3e 31 20 4f  52 20 46 4e 73 6e 62 5f  |2,1)>1 OR FNsnb_|
00000320  6e 65 65 64 64 6a 70 65  67 28 63 25 29 20 54 48  |needdjpeg(c%) TH|
00000330  45 4e 0a 0a 28 44 4f 4e  27 54 20 68 61 76 65 20  |EN..(DON'T have |
00000340  61 6e 79 20 74 72 61 69  6c 69 6e 67 20 73 70 61  |any trailing spa|
00000350  63 65 73 20 6f 6e 20 74  68 65 20 6c 69 6e 65 20  |ces on the line |
00000360  6f 72 20 69 74 20 77 6f  6e 27 74 20 77 6f 72 6b  |or it won't work|
00000370  21 29 0a 0a 41 64 64 20  61 74 20 74 68 65 20 65  |!)..Add at the e|
00000380  6e 64 20 6f 66 20 74 68  65 20 70 72 6f 67 72 61  |nd of the progra|
00000390  6d 3a 0a 0a 44 45 46 46  4e 73 6e 62 5f 6e 65 78  |m:..DEFFNsnb_nex|
000003a0  74 28 63 25 29 0a 4c 4f  43 41 4c 76 25 3a 57 48  |t(c%).LOCALv%:WH|
000003b0  49 4c 45 42 47 45 54 23  63 25 3c 3e 32 35 35 20  |ILEBGET#c%<>255 |
000003c0  41 4e 44 20 4e 4f 54 45  4f 46 23 63 25 3a 45 4e  |AND NOTEOF#c%:EN|
000003d0  44 57 48 49 4c 45 3a 49  46 45 4f 46 23 63 25 3a  |DWHILE:IFEOF#c%:|
000003e0  3d 26 31 30 30 0a 52 45  50 45 41 54 3a 76 25 3d  |=&100.REPEAT:v%=|
000003f0  42 47 45 54 23 63 25 3a  55 4e 54 49 4c 45 4f 46  |BGET#c%:UNTILEOF|
00000400  23 63 25 20 4f 52 20 76  25 3c 3e 32 35 35 3a 49  |#c% OR v%<>255:I|
00000410  46 20 45 4f 46 23 63 25  3a 76 25 3d 32 35 36 0a  |F EOF#c%:v%=256.|
00000420  3d 76 25 0a 44 45 46 50  52 4f 43 73 6e 62 5f 73  |=v%.DEFPROCsnb_s|
00000430  6b 69 70 28 63 25 29 0a  4c 4f 43 41 4c 76 25 2c  |kip(c%).LOCALv%,|
00000440  77 25 3a 76 25 3d 50 54  52 23 63 25 3a 77 25 3d  |w%:v%=PTR#c%:w%=|
00000450  42 47 45 54 23 63 25 3a  77 25 3d 28 77 25 2a 32  |BGET#c%:w%=(w%*2|
00000460  35 36 2b 42 47 45 54 23  63 25 29 0a 50 54 52 23  |56+BGET#c%).PTR#|
00000470  63 25 3d 76 25 2b 77 25  3a 45 4e 44 50 52 4f 43  |c%=v%+w%:ENDPROC|
00000480  0a 44 45 46 46 4e 73 6e  62 5f 6e 65 65 64 64 6a  |.DEFFNsnb_needdj|
00000490  70 65 67 28 63 25 29 0a  4c 4f 43 41 4c 73 7a 25  |peg(c%).LOCALsz%|
000004a0  3a 52 45 4d 20 4e 6f 74  20 41 63 6f 72 6e 20 63  |:REM Not Acorn c|
000004b0  6f 64 65 20 2d 20 61 64  64 65 64 2e 20 41 73 73  |ode - added. Ass|
000004c0  75 6d 65 73 20 66 69 6c  65 20 69 73 20 4a 50 45  |umes file is JPE|
000004d0  47 21 0a 50 54 52 23 63  25 3d 32 3a 52 45 50 45  |G!.PTR#c%=2:REPE|
000004e0  41 54 3a 73 7a 25 3d 46  4e 73 6e 62 5f 6e 65 78  |AT:sz%=FNsnb_nex|
000004f0  74 28 63 25 29 3a 49 46  73 7a 25 3d 26 43 30 20  |t(c%):IFsz%=&C0 |
00000500  4f 52 20 73 7a 25 3e 32  35 35 3a 3d 46 41 4c 53  |OR sz%>255:=FALS|
00000510  45 0a 49 46 73 7a 25 3e  26 43 30 20 41 4e 44 73  |E.IFsz%>&C0 ANDs|
00000520  7a 25 3c 26 44 30 20 41  4e 44 73 7a 25 3c 3e 26  |z%<&D0 ANDsz%<>&|
00000530  43 34 20 41 4e 44 73 7a  25 3c 3e 26 43 43 3a 3d  |C4 ANDsz%<>&CC:=|
00000540  54 52 55 45 3a 52 45 4d  20 4d 5f 53 4f 46 6e 0a  |TRUE:REM M_SOFn.|
00000550  49 46 73 7a 25 3e 26 45  30 20 41 4e 44 20 73 7a  |IFsz%>&E0 AND sz|
00000560  25 3c 26 46 30 3a 3d 54  52 55 45 3a 20 52 45 4d  |%<&F0:=TRUE: REM|
00000570  20 4d 5f 41 50 50 6e 0a  50 52 4f 43 73 6e 62 5f  | M_APPn.PROCsnb_|
00000580  73 6b 69 70 28 63 25 29  3a 55 4e 54 49 4c 45 4f  |skip(c%):UNTILEO|
00000590  46 23 63 25 3a 3d 46 41  4c 53 45 0a 0a 53 61 76  |F#c%:=FALSE..Sav|
000005a0  65 20 74 68 69 73 2c 20  6b 65 65 70 69 6e 67 20  |e this, keeping |
000005b0  61 20 62 61 63 6b 75 70  20 6f 66 20 74 68 65 20  |a backup of the |
000005c0  6f 72 69 67 69 6e 61 6c  2e 20 20 54 68 61 74 20  |original.  That |
000005d0  63 6f 6d 70 6c 65 74 65  73 20 74 68 65 0a 63 68  |completes the.ch|
000005e0  61 6e 67 65 73 20 74 6f  20 74 68 65 20 43 68 61  |anges to the Cha|
000005f0  6e 67 65 46 53 49 20 70  72 6f 67 72 61 6d 20 69  |ngeFSI program i|
00000600  74 73 65 6c 66 2e 20 20  4e 6f 77 20 79 6f 75 20  |tself.  Now you |
00000610  6e 65 65 64 20 74 6f 20  69 6e 73 74 61 6c 6c 0a  |need to install.|
00000620  74 68 65 20 6e 65 77 20  4a 50 45 47 20 73 6f 66  |the new JPEG sof|
00000630  74 77 61 72 65 2e 0a 0a  0a 49 6e 73 74 61 6c 6c  |tware....Install|
00000640  69 6e 67 20 74 68 65 20  6e 65 77 20 4a 50 45 47  |ing the new JPEG|
00000650  20 73 6f 66 74 77 61 72  65 0a 3d 3d 3d 3d 3d 3d  | software.======|
00000660  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000670  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 0a 0a 4f 70 65 6e  |==========..Open|
00000680  20 74 68 65 20 22 64 6a  70 65 67 22 20 64 69 72  | the "djpeg" dir|
00000690  65 63 74 6f 72 79 20 77  68 69 63 68 20 77 61 73  |ectory which was|
000006a0  20 69 6e 20 74 68 65 20  72 6f 6f 74 20 6f 66 20  | in the root of |
000006b0  74 68 65 20 41 72 63 57  65 62 20 61 72 63 68 69  |the ArcWeb archi|
000006c0  76 65 0a 61 6e 64 20 63  6f 70 79 20 74 68 65 20  |ve.and copy the |
000006d0  64 6a 70 65 67 20 70 72  6f 67 72 61 6d 20 74 68  |djpeg program th|
000006e0  61 74 20 79 6f 75 20 66  69 6e 64 20 69 6e 73 69  |at you find insi|
000006f0  64 65 20 74 6f 20 73 6f  6d 65 77 68 65 72 65 20  |de to somewhere |
00000700  6f 6e 20 52 75 6e 24 50  61 74 68 0a 73 6f 20 74  |on Run$Path.so t|
00000710  68 61 74 20 43 68 61 6e  67 65 46 53 49 20 63 61  |hat ChangeFSI ca|
00000720  6e 20 73 65 65 20 69 74  2e 20 20 28 59 6f 75 20  |n see it.  (You |
00000730  6d 61 79 20 63 68 6f 6f  73 65 20 74 6f 20 63 6f  |may choose to co|
00000740  70 79 20 69 74 20 69 6e  74 6f 20 74 68 65 0a 21  |py it into the.!|
00000750  43 68 61 6e 67 65 46 53  49 20 64 69 72 65 63 74  |ChangeFSI direct|
00000760  6f 72 79 20 69 74 73 65  6c 66 20 28 6f 72 20 21  |ory itself (or !|
00000770  43 68 61 6e 67 65 46 53  49 2e 64 6a 70 65 67 20  |ChangeFSI.djpeg |
00000780  64 69 72 65 63 74 6f 72  79 29 0a 0a 0a 41 6e 64  |directory)...And|
00000790  20 46 69 6e 61 6c 6c 79  20 2e 2e 2e 0a 3d 3d 3d  | Finally ....===|
000007a0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 0a 0a 54 68  |============..Th|
000007b0  61 74 20 73 68 6f 75 6c  64 20 64 6f 20 69 74 20  |at should do it |
000007c0  2d 20 69 74 20 6e 6f 77  20 77 6f 72 6b 73 20 66  |- it now works f|
000007d0  6f 72 20 6d 65 2e 20 20  54 68 65 20 66 6f 6c 6c  |or me.  The foll|
000007e0  6f 77 69 6e 67 20 74 65  78 74 20 69 73 20 61 0a  |owing text is a.|
000007f0  64 65 73 63 72 69 70 74  69 6f 6e 20 6f 66 20 68  |description of h|
00000800  6f 77 20 69 74 20 77 6f  72 6b 73 20 61 6e 64 20  |ow it works and |
00000810  72 65 61 64 69 6e 67 20  26 20 75 6e 64 65 72 73  |reading & unders|
00000820  74 61 6e 64 69 6e 67 20  6f 66 20 69 74 20 69 73  |tanding of it is|
00000830  20 6e 6f 74 0a 6e 65 63  65 73 73 61 72 79 20 3a  | not.necessary :|
00000840  2d 29 0a 0a 0a 54 65 63  68 6e 69 63 61 6c 20 4e  |-)...Technical N|
00000850  6f 74 65 73 0a 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |otes.===========|
00000860  3d 3d 3d 3d 0a 0a 54 68  69 73 20 63 68 61 6e 67  |====..This chang|
00000870  65 20 61 6c 6c 6f 77 73  20 43 68 61 6e 67 65 46  |e allows ChangeF|
00000880  53 49 20 74 6f 20 73 70  6f 74 20 6e 6f 6e 2d 62  |SI to spot non-b|
00000890  61 73 65 6c 69 6e 65 20  4a 50 45 47 73 20 61 6e  |aseline JPEGs an|
000008a0  64 20 66 61 72 6d 73 20  74 68 61 74 20 6f 75 74  |d farms that out|
000008b0  0a 74 6f 20 64 6a 70 65  67 2e 20 20 4e 6f 74 65  |.to djpeg.  Note|
000008c0  20 74 68 61 74 20 65 76  65 6e 20 64 6a 70 65 67  | that even djpeg|
000008d0  20 64 6f 65 73 6e 27 74  20 68 61 6e 64 6c 65 20  | doesn't handle |
000008e0  73 6f 6d 65 20 6f 66 20  74 68 65 20 61 72 69 74  |some of the arit|
000008f0  68 6d 65 74 69 63 0a 65  6e 63 6f 64 69 6e 67 73  |hmetic.encodings|
00000900  2c 20 62 75 74 20 69 74  20 64 6f 65 73 20 61 6c  |, but it does al|
00000910  6c 6f 77 20 69 74 20 74  6f 20 68 61 6e 64 6c 65  |low it to handle|
00000920  20 69 6d 61 67 65 73 20  74 68 61 74 20 69 74 20  | images that it |
00000930  6f 74 68 65 72 77 69 73  65 20 63 61 6e 27 74 2e  |otherwise can't.|
00000940  0a 4e 6f 74 65 20 74 68  61 74 20 61 6c 6c 20 6d  |.Note that all m|
00000950  79 20 6e 65 77 20 66 75  6e 63 74 69 6f 6e 73 20  |y new functions |
00000960  61 72 65 20 70 72 65 66  69 78 65 64 20 22 73 6e  |are prefixed "sn|
00000970  62 5f 22 20 74 6f 20 61  76 6f 69 64 20 6e 61 6d  |b_" to avoid nam|
00000980  65 20 63 6c 61 73 68 65  73 2e 0a 4e 6f 6e 2d 4a  |e clashes..Non-J|
00000990  46 49 46 20 66 69 6c 65  73 20 61 72 65 20 74 72  |FIF files are tr|
000009a0  61 70 70 65 64 20 68 65  72 65 20 74 6f 6f 20 73  |apped here too s|
000009b0  69 6e 63 65 20 61 6e 79  74 68 69 6e 67 20 77 69  |ince anything wi|
000009c0  74 68 20 61 20 66 69 6c  65 74 79 70 65 20 6f 66  |th a filetype of|
000009d0  20 26 43 38 35 0a 69 73  20 61 63 63 65 70 74 65  | &C85.is accepte|
000009e0  64 20 61 73 20 4a 50 45  47 2e 20 49 66 20 43 68  |d as JPEG. If Ch|
000009f0  61 6e 67 65 46 53 49 20  69 73 20 65 76 65 72 20  |angeFSI is ever |
00000a00  65 78 74 65 6e 64 65 64  20 74 6f 20 73 75 70 70  |extended to supp|
00000a10  6f 72 74 65 64 20 6d 6f  72 65 20 53 4f 46 6e 0a  |orted more SOFn.|
00000a20  6d 61 72 6b 65 72 73 2c  20 74 68 65 6e 20 74 68  |markers, then th|
00000a30  65 73 65 20 63 61 6e 20  73 69 6d 70 6c 79 20 62  |ese can simply b|
00000a40  65 20 74 72 61 70 70 65  64 20 77 69 74 68 69 6e  |e trapped within|
00000a50  20 74 68 65 20 52 45 50  45 41 54 20 6c 6f 6f 70  | the REPEAT loop|
00000a60  20 61 6e 64 0a 72 65 74  75 72 6e 20 46 41 4c 53  | and.return FALS|
00000a70  45 20 66 6f 72 20 74 68  6f 73 65 20 53 4f 46 6e  |E for those SOFn|
00000a80  20 74 79 70 65 73 2e 0a  0a 0a 2d 2d 20 0a 53 74  | types....-- .St|
00000a90  65 77 61 72 74 20 42 72  6f 64 69 65 0a 31 37 74  |ewart Brodie.17t|
00000aa0  68 20 4f 63 74 6f 62 65  72 20 31 39 39 36 0a     |h October 1996.|
00000aaf