Home » Archimedes archive » Acorn User » AU 1997-07 A.adf » Regulars » Rambles/EnhancdIIC/ReadMe

Rambles/EnhancdIIC/ReadMe

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 1997-07 A.adf » Regulars
Filename: Rambles/EnhancdIIC/ReadMe
Read OK:
File size: 0C5E bytes
Load address: 0000
Exec address: 0000
File contents
ReadMe : Enhanced IIC Module    v1.01  10 June 1991
============================

This module has been rewritten from scratch to provide the following three
enhancements :-

(a)     This now operates much faster, ie as near to the 5us pulse width time
        defined by Philips in the full standard as can be achieved in
        software on an Archimedes.  Exactly how close depends on the model
        and processor speed (ARM2 or 3 etc).  The design of the software is
        constrained by the need to enable interrupts while waiting for
        acknowledgement etc as this can vastly exceed the permitted holdoff.
        Note that the operation of system interrupts and also DMA for the
        sound and video subsystems can slow this down.  Also beware that
        there may be other constraining factors, such as length of cable,
        and the addressed device need not respond instantly anyway.

(b)     Secondary addressing is now supported, ie this allows operation
        through a bus extender oddule (or equivalent).   The standard IIC
        bus allows 254 locations unexpanded.  Each bus extender uses one
        directly addressable location to provide a doorway to a further
        254 locations.   This version will send out up to four bytes of
        device address before proceeding to read or write as requested.  The
        four bytes are supplied in R0 (as before), the most significant byte
        will be sent out first (ie the address of the first extender).  Note
        that values of zero are ignored and that the IIC dynamic addressing
        protocol (which uses address zero to allocate device addresses) is
        still not implemented.

(c)     There is now an extended form of the SWI call, called 
        "IIC_ExtendedControl", which takes an extra parameter, in R3, which
        is a speed factor (approx 0.5 us increments, in range 0 - 127).
        This allows operation over much longer wires - as the capacitance of
        the wire increases, the rise and fall times of the signals also
        slow down, but if not enough time is allowed for signals to stabilise
        at each state then the signals will not be recognised correctly.  By
        specifying a longer time constant and so effectively slowing the
        whole communication down, more reliable operation can happen over
        longer distances.

Any bugs found should be reported to Baildon Electronics with full details
of how to get the problem to occur, BUT don't *expect* support for a product
that you have not paid for !

The software is provided "as is" -  Baildon Electronics makes
no warranty, express or implied, of the merchantability of this software or
its fitness for any particular purpose. In no circumstances shall Baildon 
Electronics be liable for any damage, loss of profits, or any indirect or
consequential loss arising out of the use of this software or inability to
use this software, even if Baildon Electronics has been advised of the
possibility of such loss.

Baildon Electronics
The Village Store
37 Titus Street
Saltaire
Shipley
West Yorkshire
BD18 4LU
Telephone : 0274 - 580519
Facsimile : 0274 - 531626
00000000  52 65 61 64 4d 65 20 3a  20 45 6e 68 61 6e 63 65  |ReadMe : Enhance|
00000010  64 20 49 49 43 20 4d 6f  64 75 6c 65 20 20 20 20  |d IIC Module    |
00000020  76 31 2e 30 31 20 20 31  30 20 4a 75 6e 65 20 31  |v1.01  10 June 1|
00000030  39 39 31 0a 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |991.============|
00000040  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000050  0a 0a 54 68 69 73 20 6d  6f 64 75 6c 65 20 68 61  |..This module ha|
00000060  73 20 62 65 65 6e 20 72  65 77 72 69 74 74 65 6e  |s been rewritten|
00000070  20 66 72 6f 6d 20 73 63  72 61 74 63 68 20 74 6f  | from scratch to|
00000080  20 70 72 6f 76 69 64 65  20 74 68 65 20 66 6f 6c  | provide the fol|
00000090  6c 6f 77 69 6e 67 20 74  68 72 65 65 0a 65 6e 68  |lowing three.enh|
000000a0  61 6e 63 65 6d 65 6e 74  73 20 3a 2d 0a 0a 28 61  |ancements :-..(a|
000000b0  29 20 20 20 20 20 54 68  69 73 20 6e 6f 77 20 6f  |)     This now o|
000000c0  70 65 72 61 74 65 73 20  6d 75 63 68 20 66 61 73  |perates much fas|
000000d0  74 65 72 2c 20 69 65 20  61 73 20 6e 65 61 72 20  |ter, ie as near |
000000e0  74 6f 20 74 68 65 20 35  75 73 20 70 75 6c 73 65  |to the 5us pulse|
000000f0  20 77 69 64 74 68 20 74  69 6d 65 0a 20 20 20 20  | width time.    |
00000100  20 20 20 20 64 65 66 69  6e 65 64 20 62 79 20 50  |    defined by P|
00000110  68 69 6c 69 70 73 20 69  6e 20 74 68 65 20 66 75  |hilips in the fu|
00000120  6c 6c 20 73 74 61 6e 64  61 72 64 20 61 73 20 63  |ll standard as c|
00000130  61 6e 20 62 65 20 61 63  68 69 65 76 65 64 20 69  |an be achieved i|
00000140  6e 0a 20 20 20 20 20 20  20 20 73 6f 66 74 77 61  |n.        softwa|
00000150  72 65 20 6f 6e 20 61 6e  20 41 72 63 68 69 6d 65  |re on an Archime|
00000160  64 65 73 2e 20 20 45 78  61 63 74 6c 79 20 68 6f  |des.  Exactly ho|
00000170  77 20 63 6c 6f 73 65 20  64 65 70 65 6e 64 73 20  |w close depends |
00000180  6f 6e 20 74 68 65 20 6d  6f 64 65 6c 0a 20 20 20  |on the model.   |
00000190  20 20 20 20 20 61 6e 64  20 70 72 6f 63 65 73 73  |     and process|
000001a0  6f 72 20 73 70 65 65 64  20 28 41 52 4d 32 20 6f  |or speed (ARM2 o|
000001b0  72 20 33 20 65 74 63 29  2e 20 20 54 68 65 20 64  |r 3 etc).  The d|
000001c0  65 73 69 67 6e 20 6f 66  20 74 68 65 20 73 6f 66  |esign of the sof|
000001d0  74 77 61 72 65 20 69 73  0a 20 20 20 20 20 20 20  |tware is.       |
000001e0  20 63 6f 6e 73 74 72 61  69 6e 65 64 20 62 79 20  | constrained by |
000001f0  74 68 65 20 6e 65 65 64  20 74 6f 20 65 6e 61 62  |the need to enab|
00000200  6c 65 20 69 6e 74 65 72  72 75 70 74 73 20 77 68  |le interrupts wh|
00000210  69 6c 65 20 77 61 69 74  69 6e 67 20 66 6f 72 0a  |ile waiting for.|
00000220  20 20 20 20 20 20 20 20  61 63 6b 6e 6f 77 6c 65  |        acknowle|
00000230  64 67 65 6d 65 6e 74 20  65 74 63 20 61 73 20 74  |dgement etc as t|
00000240  68 69 73 20 63 61 6e 20  76 61 73 74 6c 79 20 65  |his can vastly e|
00000250  78 63 65 65 64 20 74 68  65 20 70 65 72 6d 69 74  |xceed the permit|
00000260  74 65 64 20 68 6f 6c 64  6f 66 66 2e 0a 20 20 20  |ted holdoff..   |
00000270  20 20 20 20 20 4e 6f 74  65 20 74 68 61 74 20 74  |     Note that t|
00000280  68 65 20 6f 70 65 72 61  74 69 6f 6e 20 6f 66 20  |he operation of |
00000290  73 79 73 74 65 6d 20 69  6e 74 65 72 72 75 70 74  |system interrupt|
000002a0  73 20 61 6e 64 20 61 6c  73 6f 20 44 4d 41 20 66  |s and also DMA f|
000002b0  6f 72 20 74 68 65 0a 20  20 20 20 20 20 20 20 73  |or the.        s|
000002c0  6f 75 6e 64 20 61 6e 64  20 76 69 64 65 6f 20 73  |ound and video s|
000002d0  75 62 73 79 73 74 65 6d  73 20 63 61 6e 20 73 6c  |ubsystems can sl|
000002e0  6f 77 20 74 68 69 73 20  64 6f 77 6e 2e 20 20 41  |ow this down.  A|
000002f0  6c 73 6f 20 62 65 77 61  72 65 20 74 68 61 74 0a  |lso beware that.|
00000300  20 20 20 20 20 20 20 20  74 68 65 72 65 20 6d 61  |        there ma|
00000310  79 20 62 65 20 6f 74 68  65 72 20 63 6f 6e 73 74  |y be other const|
00000320  72 61 69 6e 69 6e 67 20  66 61 63 74 6f 72 73 2c  |raining factors,|
00000330  20 73 75 63 68 20 61 73  20 6c 65 6e 67 74 68 20  | such as length |
00000340  6f 66 20 63 61 62 6c 65  2c 0a 20 20 20 20 20 20  |of cable,.      |
00000350  20 20 61 6e 64 20 74 68  65 20 61 64 64 72 65 73  |  and the addres|
00000360  73 65 64 20 64 65 76 69  63 65 20 6e 65 65 64 20  |sed device need |
00000370  6e 6f 74 20 72 65 73 70  6f 6e 64 20 69 6e 73 74  |not respond inst|
00000380  61 6e 74 6c 79 20 61 6e  79 77 61 79 2e 0a 0a 28  |antly anyway...(|
00000390  62 29 20 20 20 20 20 53  65 63 6f 6e 64 61 72 79  |b)     Secondary|
000003a0  20 61 64 64 72 65 73 73  69 6e 67 20 69 73 20 6e  | addressing is n|
000003b0  6f 77 20 73 75 70 70 6f  72 74 65 64 2c 20 69 65  |ow supported, ie|
000003c0  20 74 68 69 73 20 61 6c  6c 6f 77 73 20 6f 70 65  | this allows ope|
000003d0  72 61 74 69 6f 6e 0a 20  20 20 20 20 20 20 20 74  |ration.        t|
000003e0  68 72 6f 75 67 68 20 61  20 62 75 73 20 65 78 74  |hrough a bus ext|
000003f0  65 6e 64 65 72 20 6f 64  64 75 6c 65 20 28 6f 72  |ender oddule (or|
00000400  20 65 71 75 69 76 61 6c  65 6e 74 29 2e 20 20 20  | equivalent).   |
00000410  54 68 65 20 73 74 61 6e  64 61 72 64 20 49 49 43  |The standard IIC|
00000420  0a 20 20 20 20 20 20 20  20 62 75 73 20 61 6c 6c  |.        bus all|
00000430  6f 77 73 20 32 35 34 20  6c 6f 63 61 74 69 6f 6e  |ows 254 location|
00000440  73 20 75 6e 65 78 70 61  6e 64 65 64 2e 20 20 45  |s unexpanded.  E|
00000450  61 63 68 20 62 75 73 20  65 78 74 65 6e 64 65 72  |ach bus extender|
00000460  20 75 73 65 73 20 6f 6e  65 0a 20 20 20 20 20 20  | uses one.      |
00000470  20 20 64 69 72 65 63 74  6c 79 20 61 64 64 72 65  |  directly addre|
00000480  73 73 61 62 6c 65 20 6c  6f 63 61 74 69 6f 6e 20  |ssable location |
00000490  74 6f 20 70 72 6f 76 69  64 65 20 61 20 64 6f 6f  |to provide a doo|
000004a0  72 77 61 79 20 74 6f 20  61 20 66 75 72 74 68 65  |rway to a furthe|
000004b0  72 0a 20 20 20 20 20 20  20 20 32 35 34 20 6c 6f  |r.        254 lo|
000004c0  63 61 74 69 6f 6e 73 2e  20 20 20 54 68 69 73 20  |cations.   This |
000004d0  76 65 72 73 69 6f 6e 20  77 69 6c 6c 20 73 65 6e  |version will sen|
000004e0  64 20 6f 75 74 20 75 70  20 74 6f 20 66 6f 75 72  |d out up to four|
000004f0  20 62 79 74 65 73 20 6f  66 0a 20 20 20 20 20 20  | bytes of.      |
00000500  20 20 64 65 76 69 63 65  20 61 64 64 72 65 73 73  |  device address|
00000510  20 62 65 66 6f 72 65 20  70 72 6f 63 65 65 64 69  | before proceedi|
00000520  6e 67 20 74 6f 20 72 65  61 64 20 6f 72 20 77 72  |ng to read or wr|
00000530  69 74 65 20 61 73 20 72  65 71 75 65 73 74 65 64  |ite as requested|
00000540  2e 20 20 54 68 65 0a 20  20 20 20 20 20 20 20 66  |.  The.        f|
00000550  6f 75 72 20 62 79 74 65  73 20 61 72 65 20 73 75  |our bytes are su|
00000560  70 70 6c 69 65 64 20 69  6e 20 52 30 20 28 61 73  |pplied in R0 (as|
00000570  20 62 65 66 6f 72 65 29  2c 20 74 68 65 20 6d 6f  | before), the mo|
00000580  73 74 20 73 69 67 6e 69  66 69 63 61 6e 74 20 62  |st significant b|
00000590  79 74 65 0a 20 20 20 20  20 20 20 20 77 69 6c 6c  |yte.        will|
000005a0  20 62 65 20 73 65 6e 74  20 6f 75 74 20 66 69 72  | be sent out fir|
000005b0  73 74 20 28 69 65 20 74  68 65 20 61 64 64 72 65  |st (ie the addre|
000005c0  73 73 20 6f 66 20 74 68  65 20 66 69 72 73 74 20  |ss of the first |
000005d0  65 78 74 65 6e 64 65 72  29 2e 20 20 4e 6f 74 65  |extender).  Note|
000005e0  0a 20 20 20 20 20 20 20  20 74 68 61 74 20 76 61  |.        that va|
000005f0  6c 75 65 73 20 6f 66 20  7a 65 72 6f 20 61 72 65  |lues of zero are|
00000600  20 69 67 6e 6f 72 65 64  20 61 6e 64 20 74 68 61  | ignored and tha|
00000610  74 20 74 68 65 20 49 49  43 20 64 79 6e 61 6d 69  |t the IIC dynami|
00000620  63 20 61 64 64 72 65 73  73 69 6e 67 0a 20 20 20  |c addressing.   |
00000630  20 20 20 20 20 70 72 6f  74 6f 63 6f 6c 20 28 77  |     protocol (w|
00000640  68 69 63 68 20 75 73 65  73 20 61 64 64 72 65 73  |hich uses addres|
00000650  73 20 7a 65 72 6f 20 74  6f 20 61 6c 6c 6f 63 61  |s zero to alloca|
00000660  74 65 20 64 65 76 69 63  65 20 61 64 64 72 65 73  |te device addres|
00000670  73 65 73 29 20 69 73 0a  20 20 20 20 20 20 20 20  |ses) is.        |
00000680  73 74 69 6c 6c 20 6e 6f  74 20 69 6d 70 6c 65 6d  |still not implem|
00000690  65 6e 74 65 64 2e 0a 0a  28 63 29 20 20 20 20 20  |ented...(c)     |
000006a0  54 68 65 72 65 20 69 73  20 6e 6f 77 20 61 6e 20  |There is now an |
000006b0  65 78 74 65 6e 64 65 64  20 66 6f 72 6d 20 6f 66  |extended form of|
000006c0  20 74 68 65 20 53 57 49  20 63 61 6c 6c 2c 20 63  | the SWI call, c|
000006d0  61 6c 6c 65 64 20 0a 20  20 20 20 20 20 20 20 22  |alled .        "|
000006e0  49 49 43 5f 45 78 74 65  6e 64 65 64 43 6f 6e 74  |IIC_ExtendedCont|
000006f0  72 6f 6c 22 2c 20 77 68  69 63 68 20 74 61 6b 65  |rol", which take|
00000700  73 20 61 6e 20 65 78 74  72 61 20 70 61 72 61 6d  |s an extra param|
00000710  65 74 65 72 2c 20 69 6e  20 52 33 2c 20 77 68 69  |eter, in R3, whi|
00000720  63 68 0a 20 20 20 20 20  20 20 20 69 73 20 61 20  |ch.        is a |
00000730  73 70 65 65 64 20 66 61  63 74 6f 72 20 28 61 70  |speed factor (ap|
00000740  70 72 6f 78 20 30 2e 35  20 75 73 20 69 6e 63 72  |prox 0.5 us incr|
00000750  65 6d 65 6e 74 73 2c 20  69 6e 20 72 61 6e 67 65  |ements, in range|
00000760  20 30 20 2d 20 31 32 37  29 2e 0a 20 20 20 20 20  | 0 - 127)..     |
00000770  20 20 20 54 68 69 73 20  61 6c 6c 6f 77 73 20 6f  |   This allows o|
00000780  70 65 72 61 74 69 6f 6e  20 6f 76 65 72 20 6d 75  |peration over mu|
00000790  63 68 20 6c 6f 6e 67 65  72 20 77 69 72 65 73 20  |ch longer wires |
000007a0  2d 20 61 73 20 74 68 65  20 63 61 70 61 63 69 74  |- as the capacit|
000007b0  61 6e 63 65 20 6f 66 0a  20 20 20 20 20 20 20 20  |ance of.        |
000007c0  74 68 65 20 77 69 72 65  20 69 6e 63 72 65 61 73  |the wire increas|
000007d0  65 73 2c 20 74 68 65 20  72 69 73 65 20 61 6e 64  |es, the rise and|
000007e0  20 66 61 6c 6c 20 74 69  6d 65 73 20 6f 66 20 74  | fall times of t|
000007f0  68 65 20 73 69 67 6e 61  6c 73 20 61 6c 73 6f 0a  |he signals also.|
00000800  20 20 20 20 20 20 20 20  73 6c 6f 77 20 64 6f 77  |        slow dow|
00000810  6e 2c 20 62 75 74 20 69  66 20 6e 6f 74 20 65 6e  |n, but if not en|
00000820  6f 75 67 68 20 74 69 6d  65 20 69 73 20 61 6c 6c  |ough time is all|
00000830  6f 77 65 64 20 66 6f 72  20 73 69 67 6e 61 6c 73  |owed for signals|
00000840  20 74 6f 20 73 74 61 62  69 6c 69 73 65 0a 20 20  | to stabilise.  |
00000850  20 20 20 20 20 20 61 74  20 65 61 63 68 20 73 74  |      at each st|
00000860  61 74 65 20 74 68 65 6e  20 74 68 65 20 73 69 67  |ate then the sig|
00000870  6e 61 6c 73 20 77 69 6c  6c 20 6e 6f 74 20 62 65  |nals will not be|
00000880  20 72 65 63 6f 67 6e 69  73 65 64 20 63 6f 72 72  | recognised corr|
00000890  65 63 74 6c 79 2e 20 20  42 79 0a 20 20 20 20 20  |ectly.  By.     |
000008a0  20 20 20 73 70 65 63 69  66 79 69 6e 67 20 61 20  |   specifying a |
000008b0  6c 6f 6e 67 65 72 20 74  69 6d 65 20 63 6f 6e 73  |longer time cons|
000008c0  74 61 6e 74 20 61 6e 64  20 73 6f 20 65 66 66 65  |tant and so effe|
000008d0  63 74 69 76 65 6c 79 20  73 6c 6f 77 69 6e 67 20  |ctively slowing |
000008e0  74 68 65 0a 20 20 20 20  20 20 20 20 77 68 6f 6c  |the.        whol|
000008f0  65 20 63 6f 6d 6d 75 6e  69 63 61 74 69 6f 6e 20  |e communication |
00000900  64 6f 77 6e 2c 20 6d 6f  72 65 20 72 65 6c 69 61  |down, more relia|
00000910  62 6c 65 20 6f 70 65 72  61 74 69 6f 6e 20 63 61  |ble operation ca|
00000920  6e 20 68 61 70 70 65 6e  20 6f 76 65 72 0a 20 20  |n happen over.  |
00000930  20 20 20 20 20 20 6c 6f  6e 67 65 72 20 64 69 73  |      longer dis|
00000940  74 61 6e 63 65 73 2e 0a  0a 41 6e 79 20 62 75 67  |tances...Any bug|
00000950  73 20 66 6f 75 6e 64 20  73 68 6f 75 6c 64 20 62  |s found should b|
00000960  65 20 72 65 70 6f 72 74  65 64 20 74 6f 20 42 61  |e reported to Ba|
00000970  69 6c 64 6f 6e 20 45 6c  65 63 74 72 6f 6e 69 63  |ildon Electronic|
00000980  73 20 77 69 74 68 20 66  75 6c 6c 20 64 65 74 61  |s with full deta|
00000990  69 6c 73 0a 6f 66 20 68  6f 77 20 74 6f 20 67 65  |ils.of how to ge|
000009a0  74 20 74 68 65 20 70 72  6f 62 6c 65 6d 20 74 6f  |t the problem to|
000009b0  20 6f 63 63 75 72 2c 20  42 55 54 20 64 6f 6e 27  | occur, BUT don'|
000009c0  74 20 2a 65 78 70 65 63  74 2a 20 73 75 70 70 6f  |t *expect* suppo|
000009d0  72 74 20 66 6f 72 20 61  20 70 72 6f 64 75 63 74  |rt for a product|
000009e0  0a 74 68 61 74 20 79 6f  75 20 68 61 76 65 20 6e  |.that you have n|
000009f0  6f 74 20 70 61 69 64 20  66 6f 72 20 21 0a 0a 54  |ot paid for !..T|
00000a00  68 65 20 73 6f 66 74 77  61 72 65 20 69 73 20 70  |he software is p|
00000a10  72 6f 76 69 64 65 64 20  22 61 73 20 69 73 22 20  |rovided "as is" |
00000a20  2d 20 20 42 61 69 6c 64  6f 6e 20 45 6c 65 63 74  |-  Baildon Elect|
00000a30  72 6f 6e 69 63 73 20 6d  61 6b 65 73 0a 6e 6f 20  |ronics makes.no |
00000a40  77 61 72 72 61 6e 74 79  2c 20 65 78 70 72 65 73  |warranty, expres|
00000a50  73 20 6f 72 20 69 6d 70  6c 69 65 64 2c 20 6f 66  |s or implied, of|
00000a60  20 74 68 65 20 6d 65 72  63 68 61 6e 74 61 62 69  | the merchantabi|
00000a70  6c 69 74 79 20 6f 66 20  74 68 69 73 20 73 6f 66  |lity of this sof|
00000a80  74 77 61 72 65 20 6f 72  0a 69 74 73 20 66 69 74  |tware or.its fit|
00000a90  6e 65 73 73 20 66 6f 72  20 61 6e 79 20 70 61 72  |ness for any par|
00000aa0  74 69 63 75 6c 61 72 20  70 75 72 70 6f 73 65 2e  |ticular purpose.|
00000ab0  20 49 6e 20 6e 6f 20 63  69 72 63 75 6d 73 74 61  | In no circumsta|
00000ac0  6e 63 65 73 20 73 68 61  6c 6c 20 42 61 69 6c 64  |nces shall Baild|
00000ad0  6f 6e 20 0a 45 6c 65 63  74 72 6f 6e 69 63 73 20  |on .Electronics |
00000ae0  62 65 20 6c 69 61 62 6c  65 20 66 6f 72 20 61 6e  |be liable for an|
00000af0  79 20 64 61 6d 61 67 65  2c 20 6c 6f 73 73 20 6f  |y damage, loss o|
00000b00  66 20 70 72 6f 66 69 74  73 2c 20 6f 72 20 61 6e  |f profits, or an|
00000b10  79 20 69 6e 64 69 72 65  63 74 20 6f 72 0a 63 6f  |y indirect or.co|
00000b20  6e 73 65 71 75 65 6e 74  69 61 6c 20 6c 6f 73 73  |nsequential loss|
00000b30  20 61 72 69 73 69 6e 67  20 6f 75 74 20 6f 66 20  | arising out of |
00000b40  74 68 65 20 75 73 65 20  6f 66 20 74 68 69 73 20  |the use of this |
00000b50  73 6f 66 74 77 61 72 65  20 6f 72 20 69 6e 61 62  |software or inab|
00000b60  69 6c 69 74 79 20 74 6f  0a 75 73 65 20 74 68 69  |ility to.use thi|
00000b70  73 20 73 6f 66 74 77 61  72 65 2c 20 65 76 65 6e  |s software, even|
00000b80  20 69 66 20 42 61 69 6c  64 6f 6e 20 45 6c 65 63  | if Baildon Elec|
00000b90  74 72 6f 6e 69 63 73 20  68 61 73 20 62 65 65 6e  |tronics has been|
00000ba0  20 61 64 76 69 73 65 64  20 6f 66 20 74 68 65 0a  | advised of the.|
00000bb0  70 6f 73 73 69 62 69 6c  69 74 79 20 6f 66 20 73  |possibility of s|
00000bc0  75 63 68 20 6c 6f 73 73  2e 0a 0a 42 61 69 6c 64  |uch loss...Baild|
00000bd0  6f 6e 20 45 6c 65 63 74  72 6f 6e 69 63 73 0a 54  |on Electronics.T|
00000be0  68 65 20 56 69 6c 6c 61  67 65 20 53 74 6f 72 65  |he Village Store|
00000bf0  0a 33 37 20 54 69 74 75  73 20 53 74 72 65 65 74  |.37 Titus Street|
00000c00  0a 53 61 6c 74 61 69 72  65 0a 53 68 69 70 6c 65  |.Saltaire.Shiple|
00000c10  79 0a 57 65 73 74 20 59  6f 72 6b 73 68 69 72 65  |y.West Yorkshire|
00000c20  0a 42 44 31 38 20 34 4c  55 0a 54 65 6c 65 70 68  |.BD18 4LU.Teleph|
00000c30  6f 6e 65 20 3a 20 30 32  37 34 20 2d 20 35 38 30  |one : 0274 - 580|
00000c40  35 31 39 0a 46 61 63 73  69 6d 69 6c 65 20 3a 20  |519.Facsimile : |
00000c50  30 32 37 34 20 2d 20 35  33 31 36 32 36 0a        |0274 - 531626.|
00000c5e