Home » CEEFAX disks » telesoftware2.adl » ATS/T\ATS13

ATS/T\ATS13

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 » CEEFAX disks » telesoftware2.adl
Filename: ATS/T\ATS13
Read OK:
File size: 1B1A bytes
Load address: 0000
Exec address: 0000
File contents


Interactive programming                                  J.J.Brayshaw 1987




ATS13: *TELESOFT
================

When pages are received from transmission using the normal ATS page
transfer facilities, they are in "raw data" format and need further
processing before being displayed. This was not necessary with the Acorn
TFS software, as any such processing was carried out before transferring
the page to computer memory. This type of page transfer is also available
with ATS, but it is not (yet) common knowledge ...

__________________________________________________________________________


The Advanced Teletext System software includes the command *TRANSFER to
capture a teletext page from a broadcast and transfer the data received
into computer memory for further processing. This page data can be used to
form a display if required, and ATS includes a *DISPLAY command to
facilitate this.

To display a page from the captured page data may seem a very simple
operation, but studying the exact content of a transmitted page shows that
some "intelligence" is required to create a full teletext page from the
data supplied.

Each row (or packet) broadcast consists of 42 bytes - but only 40 bytes
can be displayed on screen. The first two bytes are the magazine number
and the row number. In fact, 45 bytes are actually transmitted, but the
adapter itself needs the first three to identify a row of teletext as such
(and not just another tv picture line), and so does not pass them on to
ATS.

There are a few important points to note when dealing with the "raw" page
data:

 (a) the packets for a page may be transmitted in any order.

 (b) packets containing 40 spaces need not be transmitted.

 (c) the second row of a double-height display is not normally
     transmitted.

 (d) some packets may be transmitted more than once.

Such situations need to be dealt with by any teletext receiver in order to
produce the intended display. For example, untransmitted packets should be
considered as either 40 spaces or a copy of the previous row, depending on
whether the previous row contains a double-height character or not.





                                  Page 1








Interactive programming                                  J.J.Brayshaw 1987




There are, in fact, two different ways in which the data for a page can be
transferred into memory by ATS, and any subsequent processing is different
for each format.

*TTXON enables telesoftware interrupts (i.e. the ATS responds to messages
sent to the computer by the adapter). In this state, any page transferred
is in the "default" format of 42 bytes per row, almost exactly as
transmitted. The only processing carried out by the adapter/ATS in this
format is the exclusion of the first three bytes of each packet (the clock
run-in and the framing code) and de-hamming of some of the hamming-coded
bytes.

An alternative page capture format is provided by the command *TELESOFT.
This enables reception of page data in a ready-to-display form, with
untransmitted rows generated correctly, each packet consisting of just the
40 displayable bytes of each row, and the packets sorted into their
correct order. The command should replace the *TTXON command within your
program. However, due a slight problem with ATS version 2.50, it is better
to issue both commands when requesting this format, using *TTXON followed
by *TELESOFT (or its minimum abbreviation *TELES.) before issuing any
channel or page requests.

This mode of data transfer was included in ATS to provide a measure of
compatibility with the older TFS ROM. The latter always transferred pages
as 24 packets of 40 bytes each, and no option was available to transfer
the full packet data of 42 bytes. With ATS, this command when used with
the *TRANSFER command, will emulate the TFS. However, it can be extended
to receive as many packets as are transmitted for the selected page by
using *TRANSFER followed by *DATA, as in the accompanying program.

The *DISPLAY routine is self-adjusting to cope with the page being
transferred in either mode.

*TELESOFT has become a very useful command with ATS as it reduces the
amount of page data processing required, makes it more reliable to find
the precise position of data within a specific page and makes it easier to
calculate the memory space requirements for any page transfer.

__________________________________________________________________________

B/ATS13 uses a Mode 0 screen to display exactly what has been received in
either *TTXON or *TELESOFT mode. The program is set to look at ITV Oracle,
page 100. This page is transmitted with the packets out of order (look at
where packet 27 is broadcast!) and shows how *TTXON with *DATA transfers
the packets in the order they are transmitted, whilst *TELESOFT with *DATA
transfers the page with packet 27 in the correct location, double-height
packets duplicated correctly, and non-broadcast packets replaced with
spaces (unless used for double-height rows).




                                  Page 2








Interactive programming                                  J.J.Brayshaw 1987





In the first display of the program, the first digit is the magazine
number (taken from the first byte of the packet), the second number is the
packet (row) number, taken from the second byte of the packet. Both of
these have been interpreted as ASCII characters, as they are actually
transmitted as the binary code of the appropriate value (i.e. if the
magazine number is two, this is transmitted as CHR$(2) which has been
interpreted for the display as the digit "2"). Suitable spacing has been
added to clarify the display. The remaining bytes are the 40 data bytes
from the packet. Control codes etc. have been altered to spaces to avoid
problems with the Mode 0 display.

It is interesting to alter the program to look at BBC2, page 700. This
should show four different packet 27's, plus packets 24 and 25 (in fact
the maximum possible data for a Level 1 FLOF teletext transmission).
These additional packets 27's are uniquely identified by the first data
byte, and carry the details of the full 24 page links.

Beware, however, as even though *DATA also transfers packet 27, the ATS
OSWORD call to check the CRC, will fail because the page is no longer in
the expected format. (See ATS01 for details of the CRC calculations).

Using the *TELESOFT command offers savings in both space and processing,
and can be used in most teletext applications software for limited
purposes. It cannot be used where some of the more advanced teletext
features, including page data integrity checking or page link decoding,
are needed. For such applications, the *TTXON mode must be used, involving
additional processing within your own software to extract the precise
information required, but keeping full control of the data with the
programmer.






















                                  Page 3




00000000  0d 0d 0d 49 6e 74 65 72  61 63 74 69 76 65 20 70  |...Interactive p|
00000010  72 6f 67 72 61 6d 6d 69  6e 67 20 20 20 20 20 20  |rogramming      |
00000020  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000030  20 20 20 20 20 20 20 20  20 20 20 20 4a 2e 4a 2e  |            J.J.|
00000040  42 72 61 79 73 68 61 77  20 31 39 38 37 0d 0d 0d  |Brayshaw 1987...|
00000050  0d 0d 41 54 53 31 33 3a  20 2a 54 45 4c 45 53 4f  |..ATS13: *TELESO|
00000060  46 54 0d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |FT.=============|
00000070  3d 3d 3d 0d 0d 57 68 65  6e 20 70 61 67 65 73 20  |===..When pages |
00000080  61 72 65 20 72 65 63 65  69 76 65 64 20 66 72 6f  |are received fro|
00000090  6d 20 74 72 61 6e 73 6d  69 73 73 69 6f 6e 20 75  |m transmission u|
000000a0  73 69 6e 67 20 74 68 65  20 6e 6f 72 6d 61 6c 20  |sing the normal |
000000b0  41 54 53 20 70 61 67 65  0d 74 72 61 6e 73 66 65  |ATS page.transfe|
000000c0  72 20 66 61 63 69 6c 69  74 69 65 73 2c 20 74 68  |r facilities, th|
000000d0  65 79 20 61 72 65 20 69  6e 20 22 72 61 77 20 64  |ey are in "raw d|
000000e0  61 74 61 22 20 66 6f 72  6d 61 74 20 61 6e 64 20  |ata" format and |
000000f0  6e 65 65 64 20 66 75 72  74 68 65 72 0d 70 72 6f  |need further.pro|
00000100  63 65 73 73 69 6e 67 20  62 65 66 6f 72 65 20 62  |cessing before b|
00000110  65 69 6e 67 20 64 69 73  70 6c 61 79 65 64 2e 20  |eing displayed. |
00000120  54 68 69 73 20 77 61 73  20 6e 6f 74 20 6e 65 63  |This was not nec|
00000130  65 73 73 61 72 79 20 77  69 74 68 20 74 68 65 20  |essary with the |
00000140  41 63 6f 72 6e 0d 54 46  53 20 73 6f 66 74 77 61  |Acorn.TFS softwa|
00000150  72 65 2c 20 61 73 20 61  6e 79 20 73 75 63 68 20  |re, as any such |
00000160  70 72 6f 63 65 73 73 69  6e 67 20 77 61 73 20 63  |processing was c|
00000170  61 72 72 69 65 64 20 6f  75 74 20 62 65 66 6f 72  |arried out befor|
00000180  65 20 74 72 61 6e 73 66  65 72 72 69 6e 67 0d 74  |e transferring.t|
00000190  68 65 20 70 61 67 65 20  74 6f 20 63 6f 6d 70 75  |he page to compu|
000001a0  74 65 72 20 6d 65 6d 6f  72 79 2e 20 54 68 69 73  |ter memory. This|
000001b0  20 74 79 70 65 20 6f 66  20 70 61 67 65 20 74 72  | type of page tr|
000001c0  61 6e 73 66 65 72 20 69  73 20 61 6c 73 6f 20 61  |ansfer is also a|
000001d0  76 61 69 6c 61 62 6c 65  0d 77 69 74 68 20 41 54  |vailable.with AT|
000001e0  53 2c 20 62 75 74 20 69  74 20 69 73 20 6e 6f 74  |S, but it is not|
000001f0  20 28 79 65 74 29 20 63  6f 6d 6d 6f 6e 20 6b 6e  | (yet) common kn|
00000200  6f 77 6c 65 64 67 65 20  2e 2e 2e 0d 0d 5f 5f 5f  |owledge .....___|
00000210  5f 5f 5f 5f 5f 5f 5f 5f  5f 5f 5f 5f 5f 5f 5f 5f  |________________|
*
00000250  5f 5f 5f 5f 5f 5f 5f 0d  0d 0d 54 68 65 20 41 64  |_______...The Ad|
00000260  76 61 6e 63 65 64 20 54  65 6c 65 74 65 78 74 20  |vanced Teletext |
00000270  53 79 73 74 65 6d 20 73  6f 66 74 77 61 72 65 20  |System software |
00000280  69 6e 63 6c 75 64 65 73  20 74 68 65 20 63 6f 6d  |includes the com|
00000290  6d 61 6e 64 20 2a 54 52  41 4e 53 46 45 52 20 74  |mand *TRANSFER t|
000002a0  6f 0d 63 61 70 74 75 72  65 20 61 20 74 65 6c 65  |o.capture a tele|
000002b0  74 65 78 74 20 70 61 67  65 20 66 72 6f 6d 20 61  |text page from a|
000002c0  20 62 72 6f 61 64 63 61  73 74 20 61 6e 64 20 74  | broadcast and t|
000002d0  72 61 6e 73 66 65 72 20  74 68 65 20 64 61 74 61  |ransfer the data|
000002e0  20 72 65 63 65 69 76 65  64 0d 69 6e 74 6f 20 63  | received.into c|
000002f0  6f 6d 70 75 74 65 72 20  6d 65 6d 6f 72 79 20 66  |omputer memory f|
00000300  6f 72 20 66 75 72 74 68  65 72 20 70 72 6f 63 65  |or further proce|
00000310  73 73 69 6e 67 2e 20 54  68 69 73 20 70 61 67 65  |ssing. This page|
00000320  20 64 61 74 61 20 63 61  6e 20 62 65 20 75 73 65  | data can be use|
00000330  64 20 74 6f 0d 66 6f 72  6d 20 61 20 64 69 73 70  |d to.form a disp|
00000340  6c 61 79 20 69 66 20 72  65 71 75 69 72 65 64 2c  |lay if required,|
00000350  20 61 6e 64 20 41 54 53  20 69 6e 63 6c 75 64 65  | and ATS include|
00000360  73 20 61 20 2a 44 49 53  50 4c 41 59 20 63 6f 6d  |s a *DISPLAY com|
00000370  6d 61 6e 64 20 74 6f 0d  66 61 63 69 6c 69 74 61  |mand to.facilita|
00000380  74 65 20 74 68 69 73 2e  0d 0d 54 6f 20 64 69 73  |te this...To dis|
00000390  70 6c 61 79 20 61 20 70  61 67 65 20 66 72 6f 6d  |play a page from|
000003a0  20 74 68 65 20 63 61 70  74 75 72 65 64 20 70 61  | the captured pa|
000003b0  67 65 20 64 61 74 61 20  6d 61 79 20 73 65 65 6d  |ge data may seem|
000003c0  20 61 20 76 65 72 79 20  73 69 6d 70 6c 65 0d 6f  | a very simple.o|
000003d0  70 65 72 61 74 69 6f 6e  2c 20 62 75 74 20 73 74  |peration, but st|
000003e0  75 64 79 69 6e 67 20 74  68 65 20 65 78 61 63 74  |udying the exact|
000003f0  20 63 6f 6e 74 65 6e 74  20 6f 66 20 61 20 74 72  | content of a tr|
00000400  61 6e 73 6d 69 74 74 65  64 20 70 61 67 65 20 73  |ansmitted page s|
00000410  68 6f 77 73 20 74 68 61  74 0d 73 6f 6d 65 20 22  |hows that.some "|
00000420  69 6e 74 65 6c 6c 69 67  65 6e 63 65 22 20 69 73  |intelligence" is|
00000430  20 72 65 71 75 69 72 65  64 20 74 6f 20 63 72 65  | required to cre|
00000440  61 74 65 20 61 20 66 75  6c 6c 20 74 65 6c 65 74  |ate a full telet|
00000450  65 78 74 20 70 61 67 65  20 66 72 6f 6d 20 74 68  |ext page from th|
00000460  65 0d 64 61 74 61 20 73  75 70 70 6c 69 65 64 2e  |e.data supplied.|
00000470  0d 0d 45 61 63 68 20 72  6f 77 20 28 6f 72 20 70  |..Each row (or p|
00000480  61 63 6b 65 74 29 20 62  72 6f 61 64 63 61 73 74  |acket) broadcast|
00000490  20 63 6f 6e 73 69 73 74  73 20 6f 66 20 34 32 20  | consists of 42 |
000004a0  62 79 74 65 73 20 2d 20  62 75 74 20 6f 6e 6c 79  |bytes - but only|
000004b0  20 34 30 20 62 79 74 65  73 0d 63 61 6e 20 62 65  | 40 bytes.can be|
000004c0  20 64 69 73 70 6c 61 79  65 64 20 6f 6e 20 73 63  | displayed on sc|
000004d0  72 65 65 6e 2e 20 54 68  65 20 66 69 72 73 74 20  |reen. The first |
000004e0  74 77 6f 20 62 79 74 65  73 20 61 72 65 20 74 68  |two bytes are th|
000004f0  65 20 6d 61 67 61 7a 69  6e 65 20 6e 75 6d 62 65  |e magazine numbe|
00000500  72 0d 61 6e 64 20 74 68  65 20 72 6f 77 20 6e 75  |r.and the row nu|
00000510  6d 62 65 72 2e 20 49 6e  20 66 61 63 74 2c 20 34  |mber. In fact, 4|
00000520  35 20 62 79 74 65 73 20  61 72 65 20 61 63 74 75  |5 bytes are actu|
00000530  61 6c 6c 79 20 74 72 61  6e 73 6d 69 74 74 65 64  |ally transmitted|
00000540  2c 20 62 75 74 20 74 68  65 0d 61 64 61 70 74 65  |, but the.adapte|
00000550  72 20 69 74 73 65 6c 66  20 6e 65 65 64 73 20 74  |r itself needs t|
00000560  68 65 20 66 69 72 73 74  20 74 68 72 65 65 20 74  |he first three t|
00000570  6f 20 69 64 65 6e 74 69  66 79 20 61 20 72 6f 77  |o identify a row|
00000580  20 6f 66 20 74 65 6c 65  74 65 78 74 20 61 73 20  | of teletext as |
00000590  73 75 63 68 0d 28 61 6e  64 20 6e 6f 74 20 6a 75  |such.(and not ju|
000005a0  73 74 20 61 6e 6f 74 68  65 72 20 74 76 20 70 69  |st another tv pi|
000005b0  63 74 75 72 65 20 6c 69  6e 65 29 2c 20 61 6e 64  |cture line), and|
000005c0  20 73 6f 20 64 6f 65 73  20 6e 6f 74 20 70 61 73  | so does not pas|
000005d0  73 20 74 68 65 6d 20 6f  6e 20 74 6f 0d 41 54 53  |s them on to.ATS|
000005e0  2e 0d 0d 54 68 65 72 65  20 61 72 65 20 61 20 66  |...There are a f|
000005f0  65 77 20 69 6d 70 6f 72  74 61 6e 74 20 70 6f 69  |ew important poi|
00000600  6e 74 73 20 74 6f 20 6e  6f 74 65 20 77 68 65 6e  |nts to note when|
00000610  20 64 65 61 6c 69 6e 67  20 77 69 74 68 20 74 68  | dealing with th|
00000620  65 20 22 72 61 77 22 20  70 61 67 65 0d 64 61 74  |e "raw" page.dat|
00000630  61 3a 0d 0d 20 28 61 29  20 74 68 65 20 70 61 63  |a:.. (a) the pac|
00000640  6b 65 74 73 20 66 6f 72  20 61 20 70 61 67 65 20  |kets for a page |
00000650  6d 61 79 20 62 65 20 74  72 61 6e 73 6d 69 74 74  |may be transmitt|
00000660  65 64 20 69 6e 20 61 6e  79 20 6f 72 64 65 72 2e  |ed in any order.|
00000670  0d 0d 20 28 62 29 20 70  61 63 6b 65 74 73 20 63  |.. (b) packets c|
00000680  6f 6e 74 61 69 6e 69 6e  67 20 34 30 20 73 70 61  |ontaining 40 spa|
00000690  63 65 73 20 6e 65 65 64  20 6e 6f 74 20 62 65 20  |ces need not be |
000006a0  74 72 61 6e 73 6d 69 74  74 65 64 2e 0d 0d 20 28  |transmitted... (|
000006b0  63 29 20 74 68 65 20 73  65 63 6f 6e 64 20 72 6f  |c) the second ro|
000006c0  77 20 6f 66 20 61 20 64  6f 75 62 6c 65 2d 68 65  |w of a double-he|
000006d0  69 67 68 74 20 64 69 73  70 6c 61 79 20 69 73 20  |ight display is |
000006e0  6e 6f 74 20 6e 6f 72 6d  61 6c 6c 79 0d 20 20 20  |not normally.   |
000006f0  20 20 74 72 61 6e 73 6d  69 74 74 65 64 2e 0d 0d  |  transmitted...|
00000700  20 28 64 29 20 73 6f 6d  65 20 70 61 63 6b 65 74  | (d) some packet|
00000710  73 20 6d 61 79 20 62 65  20 74 72 61 6e 73 6d 69  |s may be transmi|
00000720  74 74 65 64 20 6d 6f 72  65 20 74 68 61 6e 20 6f  |tted more than o|
00000730  6e 63 65 2e 0d 0d 53 75  63 68 20 73 69 74 75 61  |nce...Such situa|
00000740  74 69 6f 6e 73 20 6e 65  65 64 20 74 6f 20 62 65  |tions need to be|
00000750  20 64 65 61 6c 74 20 77  69 74 68 20 62 79 20 61  | dealt with by a|
00000760  6e 79 20 74 65 6c 65 74  65 78 74 20 72 65 63 65  |ny teletext rece|
00000770  69 76 65 72 20 69 6e 20  6f 72 64 65 72 20 74 6f  |iver in order to|
00000780  0d 70 72 6f 64 75 63 65  20 74 68 65 20 69 6e 74  |.produce the int|
00000790  65 6e 64 65 64 20 64 69  73 70 6c 61 79 2e 20 46  |ended display. F|
000007a0  6f 72 20 65 78 61 6d 70  6c 65 2c 20 75 6e 74 72  |or example, untr|
000007b0  61 6e 73 6d 69 74 74 65  64 20 70 61 63 6b 65 74  |ansmitted packet|
000007c0  73 20 73 68 6f 75 6c 64  20 62 65 0d 63 6f 6e 73  |s should be.cons|
000007d0  69 64 65 72 65 64 20 61  73 20 65 69 74 68 65 72  |idered as either|
000007e0  20 34 30 20 73 70 61 63  65 73 20 6f 72 20 61 20  | 40 spaces or a |
000007f0  63 6f 70 79 20 6f 66 20  74 68 65 20 70 72 65 76  |copy of the prev|
00000800  69 6f 75 73 20 72 6f 77  2c 20 64 65 70 65 6e 64  |ious row, depend|
00000810  69 6e 67 20 6f 6e 0d 77  68 65 74 68 65 72 20 74  |ing on.whether t|
00000820  68 65 20 70 72 65 76 69  6f 75 73 20 72 6f 77 20  |he previous row |
00000830  63 6f 6e 74 61 69 6e 73  20 61 20 64 6f 75 62 6c  |contains a doubl|
00000840  65 2d 68 65 69 67 68 74  20 63 68 61 72 61 63 74  |e-height charact|
00000850  65 72 20 6f 72 20 6e 6f  74 2e 0d 0d 0d 0d 0d 0d  |er or not.......|
00000860  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000880  20 20 50 61 67 65 20 31  0d 0d 0d 0d 0d 0d 0d 0d  |  Page 1........|
00000890  0d 49 6e 74 65 72 61 63  74 69 76 65 20 70 72 6f  |.Interactive pro|
000008a0  67 72 61 6d 6d 69 6e 67  20 20 20 20 20 20 20 20  |gramming        |
000008b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000008c0  20 20 20 20 20 20 20 20  20 20 4a 2e 4a 2e 42 72  |          J.J.Br|
000008d0  61 79 73 68 61 77 20 31  39 38 37 0d 0d 0d 0d 0d  |ayshaw 1987.....|
000008e0  54 68 65 72 65 20 61 72  65 2c 20 69 6e 20 66 61  |There are, in fa|
000008f0  63 74 2c 20 74 77 6f 20  64 69 66 66 65 72 65 6e  |ct, two differen|
00000900  74 20 77 61 79 73 20 69  6e 20 77 68 69 63 68 20  |t ways in which |
00000910  74 68 65 20 64 61 74 61  20 66 6f 72 20 61 20 70  |the data for a p|
00000920  61 67 65 20 63 61 6e 20  62 65 0d 74 72 61 6e 73  |age can be.trans|
00000930  66 65 72 72 65 64 20 69  6e 74 6f 20 6d 65 6d 6f  |ferred into memo|
00000940  72 79 20 62 79 20 41 54  53 2c 20 61 6e 64 20 61  |ry by ATS, and a|
00000950  6e 79 20 73 75 62 73 65  71 75 65 6e 74 20 70 72  |ny subsequent pr|
00000960  6f 63 65 73 73 69 6e 67  20 69 73 20 64 69 66 66  |ocessing is diff|
00000970  65 72 65 6e 74 0d 66 6f  72 20 65 61 63 68 20 66  |erent.for each f|
00000980  6f 72 6d 61 74 2e 0d 0d  2a 54 54 58 4f 4e 20 65  |ormat...*TTXON e|
00000990  6e 61 62 6c 65 73 20 74  65 6c 65 73 6f 66 74 77  |nables telesoftw|
000009a0  61 72 65 20 69 6e 74 65  72 72 75 70 74 73 20 28  |are interrupts (|
000009b0  69 2e 65 2e 20 74 68 65  20 41 54 53 20 72 65 73  |i.e. the ATS res|
000009c0  70 6f 6e 64 73 20 74 6f  20 6d 65 73 73 61 67 65  |ponds to message|
000009d0  73 0d 73 65 6e 74 20 74  6f 20 74 68 65 20 63 6f  |s.sent to the co|
000009e0  6d 70 75 74 65 72 20 62  79 20 74 68 65 20 61 64  |mputer by the ad|
000009f0  61 70 74 65 72 29 2e 20  49 6e 20 74 68 69 73 20  |apter). In this |
00000a00  73 74 61 74 65 2c 20 61  6e 79 20 70 61 67 65 20  |state, any page |
00000a10  74 72 61 6e 73 66 65 72  72 65 64 0d 69 73 20 69  |transferred.is i|
00000a20  6e 20 74 68 65 20 22 64  65 66 61 75 6c 74 22 20  |n the "default" |
00000a30  66 6f 72 6d 61 74 20 6f  66 20 34 32 20 62 79 74  |format of 42 byt|
00000a40  65 73 20 70 65 72 20 72  6f 77 2c 20 61 6c 6d 6f  |es per row, almo|
00000a50  73 74 20 65 78 61 63 74  6c 79 20 61 73 0d 74 72  |st exactly as.tr|
00000a60  61 6e 73 6d 69 74 74 65  64 2e 20 54 68 65 20 6f  |ansmitted. The o|
00000a70  6e 6c 79 20 70 72 6f 63  65 73 73 69 6e 67 20 63  |nly processing c|
00000a80  61 72 72 69 65 64 20 6f  75 74 20 62 79 20 74 68  |arried out by th|
00000a90  65 20 61 64 61 70 74 65  72 2f 41 54 53 20 69 6e  |e adapter/ATS in|
00000aa0  20 74 68 69 73 0d 66 6f  72 6d 61 74 20 69 73 20  | this.format is |
00000ab0  74 68 65 20 65 78 63 6c  75 73 69 6f 6e 20 6f 66  |the exclusion of|
00000ac0  20 74 68 65 20 66 69 72  73 74 20 74 68 72 65 65  | the first three|
00000ad0  20 62 79 74 65 73 20 6f  66 20 65 61 63 68 20 70  | bytes of each p|
00000ae0  61 63 6b 65 74 20 28 74  68 65 20 63 6c 6f 63 6b  |acket (the clock|
00000af0  0d 72 75 6e 2d 69 6e 20  61 6e 64 20 74 68 65 20  |.run-in and the |
00000b00  66 72 61 6d 69 6e 67 20  63 6f 64 65 29 20 61 6e  |framing code) an|
00000b10  64 20 64 65 2d 68 61 6d  6d 69 6e 67 20 6f 66 20  |d de-hamming of |
00000b20  73 6f 6d 65 20 6f 66 20  74 68 65 20 68 61 6d 6d  |some of the hamm|
00000b30  69 6e 67 2d 63 6f 64 65  64 0d 62 79 74 65 73 2e  |ing-coded.bytes.|
00000b40  0d 0d 41 6e 20 61 6c 74  65 72 6e 61 74 69 76 65  |..An alternative|
00000b50  20 70 61 67 65 20 63 61  70 74 75 72 65 20 66 6f  | page capture fo|
00000b60  72 6d 61 74 20 69 73 20  70 72 6f 76 69 64 65 64  |rmat is provided|
00000b70  20 62 79 20 74 68 65 20  63 6f 6d 6d 61 6e 64 20  | by the command |
00000b80  2a 54 45 4c 45 53 4f 46  54 2e 0d 54 68 69 73 20  |*TELESOFT..This |
00000b90  65 6e 61 62 6c 65 73 20  72 65 63 65 70 74 69 6f  |enables receptio|
00000ba0  6e 20 6f 66 20 70 61 67  65 20 64 61 74 61 20 69  |n of page data i|
00000bb0  6e 20 61 20 72 65 61 64  79 2d 74 6f 2d 64 69 73  |n a ready-to-dis|
00000bc0  70 6c 61 79 20 66 6f 72  6d 2c 20 77 69 74 68 0d  |play form, with.|
00000bd0  75 6e 74 72 61 6e 73 6d  69 74 74 65 64 20 72 6f  |untransmitted ro|
00000be0  77 73 20 67 65 6e 65 72  61 74 65 64 20 63 6f 72  |ws generated cor|
00000bf0  72 65 63 74 6c 79 2c 20  65 61 63 68 20 70 61 63  |rectly, each pac|
00000c00  6b 65 74 20 63 6f 6e 73  69 73 74 69 6e 67 20 6f  |ket consisting o|
00000c10  66 20 6a 75 73 74 20 74  68 65 0d 34 30 20 64 69  |f just the.40 di|
00000c20  73 70 6c 61 79 61 62 6c  65 20 62 79 74 65 73 20  |splayable bytes |
00000c30  6f 66 20 65 61 63 68 20  72 6f 77 2c 20 61 6e 64  |of each row, and|
00000c40  20 74 68 65 20 70 61 63  6b 65 74 73 20 73 6f 72  | the packets sor|
00000c50  74 65 64 20 69 6e 74 6f  20 74 68 65 69 72 0d 63  |ted into their.c|
00000c60  6f 72 72 65 63 74 20 6f  72 64 65 72 2e 20 54 68  |orrect order. Th|
00000c70  65 20 63 6f 6d 6d 61 6e  64 20 73 68 6f 75 6c 64  |e command should|
00000c80  20 72 65 70 6c 61 63 65  20 74 68 65 20 2a 54 54  | replace the *TT|
00000c90  58 4f 4e 20 63 6f 6d 6d  61 6e 64 20 77 69 74 68  |XON command with|
00000ca0  69 6e 20 79 6f 75 72 0d  70 72 6f 67 72 61 6d 2e  |in your.program.|
00000cb0  20 48 6f 77 65 76 65 72  2c 20 64 75 65 20 61 20  | However, due a |
00000cc0  73 6c 69 67 68 74 20 70  72 6f 62 6c 65 6d 20 77  |slight problem w|
00000cd0  69 74 68 20 41 54 53 20  76 65 72 73 69 6f 6e 20  |ith ATS version |
00000ce0  32 2e 35 30 2c 20 69 74  20 69 73 20 62 65 74 74  |2.50, it is bett|
00000cf0  65 72 0d 74 6f 20 69 73  73 75 65 20 62 6f 74 68  |er.to issue both|
00000d00  20 63 6f 6d 6d 61 6e 64  73 20 77 68 65 6e 20 72  | commands when r|
00000d10  65 71 75 65 73 74 69 6e  67 20 74 68 69 73 20 66  |equesting this f|
00000d20  6f 72 6d 61 74 2c 20 75  73 69 6e 67 20 2a 54 54  |ormat, using *TT|
00000d30  58 4f 4e 20 66 6f 6c 6c  6f 77 65 64 0d 62 79 20  |XON followed.by |
00000d40  2a 54 45 4c 45 53 4f 46  54 20 28 6f 72 20 69 74  |*TELESOFT (or it|
00000d50  73 20 6d 69 6e 69 6d 75  6d 20 61 62 62 72 65 76  |s minimum abbrev|
00000d60  69 61 74 69 6f 6e 20 2a  54 45 4c 45 53 2e 29 20  |iation *TELES.) |
00000d70  62 65 66 6f 72 65 20 69  73 73 75 69 6e 67 20 61  |before issuing a|
00000d80  6e 79 0d 63 68 61 6e 6e  65 6c 20 6f 72 20 70 61  |ny.channel or pa|
00000d90  67 65 20 72 65 71 75 65  73 74 73 2e 0d 0d 54 68  |ge requests...Th|
00000da0  69 73 20 6d 6f 64 65 20  6f 66 20 64 61 74 61 20  |is mode of data |
00000db0  74 72 61 6e 73 66 65 72  20 77 61 73 20 69 6e 63  |transfer was inc|
00000dc0  6c 75 64 65 64 20 69 6e  20 41 54 53 20 74 6f 20  |luded in ATS to |
00000dd0  70 72 6f 76 69 64 65 20  61 20 6d 65 61 73 75 72  |provide a measur|
00000de0  65 20 6f 66 0d 63 6f 6d  70 61 74 69 62 69 6c 69  |e of.compatibili|
00000df0  74 79 20 77 69 74 68 20  74 68 65 20 6f 6c 64 65  |ty with the olde|
00000e00  72 20 54 46 53 20 52 4f  4d 2e 20 54 68 65 20 6c  |r TFS ROM. The l|
00000e10  61 74 74 65 72 20 61 6c  77 61 79 73 20 74 72 61  |atter always tra|
00000e20  6e 73 66 65 72 72 65 64  20 70 61 67 65 73 0d 61  |nsferred pages.a|
00000e30  73 20 32 34 20 70 61 63  6b 65 74 73 20 6f 66 20  |s 24 packets of |
00000e40  34 30 20 62 79 74 65 73  20 65 61 63 68 2c 20 61  |40 bytes each, a|
00000e50  6e 64 20 6e 6f 20 6f 70  74 69 6f 6e 20 77 61 73  |nd no option was|
00000e60  20 61 76 61 69 6c 61 62  6c 65 20 74 6f 20 74 72  | available to tr|
00000e70  61 6e 73 66 65 72 0d 74  68 65 20 66 75 6c 6c 20  |ansfer.the full |
00000e80  70 61 63 6b 65 74 20 64  61 74 61 20 6f 66 20 34  |packet data of 4|
00000e90  32 20 62 79 74 65 73 2e  20 57 69 74 68 20 41 54  |2 bytes. With AT|
00000ea0  53 2c 20 74 68 69 73 20  63 6f 6d 6d 61 6e 64 20  |S, this command |
00000eb0  77 68 65 6e 20 75 73 65  64 20 77 69 74 68 0d 74  |when used with.t|
00000ec0  68 65 20 2a 54 52 41 4e  53 46 45 52 20 63 6f 6d  |he *TRANSFER com|
00000ed0  6d 61 6e 64 2c 20 77 69  6c 6c 20 65 6d 75 6c 61  |mand, will emula|
00000ee0  74 65 20 74 68 65 20 54  46 53 2e 20 48 6f 77 65  |te the TFS. Howe|
00000ef0  76 65 72 2c 20 69 74 20  63 61 6e 20 62 65 20 65  |ver, it can be e|
00000f00  78 74 65 6e 64 65 64 0d  74 6f 20 72 65 63 65 69  |xtended.to recei|
00000f10  76 65 20 61 73 20 6d 61  6e 79 20 70 61 63 6b 65  |ve as many packe|
00000f20  74 73 20 61 73 20 61 72  65 20 74 72 61 6e 73 6d  |ts as are transm|
00000f30  69 74 74 65 64 20 66 6f  72 20 74 68 65 20 73 65  |itted for the se|
00000f40  6c 65 63 74 65 64 20 70  61 67 65 20 62 79 0d 75  |lected page by.u|
00000f50  73 69 6e 67 20 2a 54 52  41 4e 53 46 45 52 20 66  |sing *TRANSFER f|
00000f60  6f 6c 6c 6f 77 65 64 20  62 79 20 2a 44 41 54 41  |ollowed by *DATA|
00000f70  2c 20 61 73 20 69 6e 20  74 68 65 20 61 63 63 6f  |, as in the acco|
00000f80  6d 70 61 6e 79 69 6e 67  20 70 72 6f 67 72 61 6d  |mpanying program|
00000f90  2e 0d 0d 54 68 65 20 2a  44 49 53 50 4c 41 59 20  |...The *DISPLAY |
00000fa0  72 6f 75 74 69 6e 65 20  69 73 20 73 65 6c 66 2d  |routine is self-|
00000fb0  61 64 6a 75 73 74 69 6e  67 20 74 6f 20 63 6f 70  |adjusting to cop|
00000fc0  65 20 77 69 74 68 20 74  68 65 20 70 61 67 65 20  |e with the page |
00000fd0  62 65 69 6e 67 0d 74 72  61 6e 73 66 65 72 72 65  |being.transferre|
00000fe0  64 20 69 6e 20 65 69 74  68 65 72 20 6d 6f 64 65  |d in either mode|
00000ff0  2e 0d 0d 2a 54 45 4c 45  53 4f 46 54 20 68 61 73  |...*TELESOFT has|
00001000  20 62 65 63 6f 6d 65 20  61 20 76 65 72 79 20 75  | become a very u|
00001010  73 65 66 75 6c 20 63 6f  6d 6d 61 6e 64 20 77 69  |seful command wi|
00001020  74 68 20 41 54 53 20 61  73 20 69 74 20 72 65 64  |th ATS as it red|
00001030  75 63 65 73 20 74 68 65  0d 61 6d 6f 75 6e 74 20  |uces the.amount |
00001040  6f 66 20 70 61 67 65 20  64 61 74 61 20 70 72 6f  |of page data pro|
00001050  63 65 73 73 69 6e 67 20  72 65 71 75 69 72 65 64  |cessing required|
00001060  2c 20 6d 61 6b 65 73 20  69 74 20 6d 6f 72 65 20  |, makes it more |
00001070  72 65 6c 69 61 62 6c 65  20 74 6f 20 66 69 6e 64  |reliable to find|
00001080  0d 74 68 65 20 70 72 65  63 69 73 65 20 70 6f 73  |.the precise pos|
00001090  69 74 69 6f 6e 20 6f 66  20 64 61 74 61 20 77 69  |ition of data wi|
000010a0  74 68 69 6e 20 61 20 73  70 65 63 69 66 69 63 20  |thin a specific |
000010b0  70 61 67 65 20 61 6e 64  20 6d 61 6b 65 73 20 69  |page and makes i|
000010c0  74 20 65 61 73 69 65 72  20 74 6f 0d 63 61 6c 63  |t easier to.calc|
000010d0  75 6c 61 74 65 20 74 68  65 20 6d 65 6d 6f 72 79  |ulate the memory|
000010e0  20 73 70 61 63 65 20 72  65 71 75 69 72 65 6d 65  | space requireme|
000010f0  6e 74 73 20 66 6f 72 20  61 6e 79 20 70 61 67 65  |nts for any page|
00001100  20 74 72 61 6e 73 66 65  72 2e 0d 0d 5f 5f 5f 5f  | transfer...____|
00001110  5f 5f 5f 5f 5f 5f 5f 5f  5f 5f 5f 5f 5f 5f 5f 5f  |________________|
*
00001150  5f 5f 5f 5f 5f 5f 0d 0d  42 2f 41 54 53 31 33 20  |______..B/ATS13 |
00001160  75 73 65 73 20 61 20 4d  6f 64 65 20 30 20 73 63  |uses a Mode 0 sc|
00001170  72 65 65 6e 20 74 6f 20  64 69 73 70 6c 61 79 20  |reen to display |
00001180  65 78 61 63 74 6c 79 20  77 68 61 74 20 68 61 73  |exactly what has|
00001190  20 62 65 65 6e 20 72 65  63 65 69 76 65 64 20 69  | been received i|
000011a0  6e 0d 65 69 74 68 65 72  20 2a 54 54 58 4f 4e 20  |n.either *TTXON |
000011b0  6f 72 20 2a 54 45 4c 45  53 4f 46 54 20 6d 6f 64  |or *TELESOFT mod|
000011c0  65 2e 20 54 68 65 20 70  72 6f 67 72 61 6d 20 69  |e. The program i|
000011d0  73 20 73 65 74 20 74 6f  20 6c 6f 6f 6b 20 61 74  |s set to look at|
000011e0  20 49 54 56 20 4f 72 61  63 6c 65 2c 0d 70 61 67  | ITV Oracle,.pag|
000011f0  65 20 31 30 30 2e 20 54  68 69 73 20 70 61 67 65  |e 100. This page|
00001200  20 69 73 20 74 72 61 6e  73 6d 69 74 74 65 64 20  | is transmitted |
00001210  77 69 74 68 20 74 68 65  20 70 61 63 6b 65 74 73  |with the packets|
00001220  20 6f 75 74 20 6f 66 20  6f 72 64 65 72 20 28 6c  | out of order (l|
00001230  6f 6f 6b 20 61 74 0d 77  68 65 72 65 20 70 61 63  |ook at.where pac|
00001240  6b 65 74 20 32 37 20 69  73 20 62 72 6f 61 64 63  |ket 27 is broadc|
00001250  61 73 74 21 29 20 61 6e  64 20 73 68 6f 77 73 20  |ast!) and shows |
00001260  68 6f 77 20 2a 54 54 58  4f 4e 20 77 69 74 68 20  |how *TTXON with |
00001270  2a 44 41 54 41 20 74 72  61 6e 73 66 65 72 73 0d  |*DATA transfers.|
00001280  74 68 65 20 70 61 63 6b  65 74 73 20 69 6e 20 74  |the packets in t|
00001290  68 65 20 6f 72 64 65 72  20 74 68 65 79 20 61 72  |he order they ar|
000012a0  65 20 74 72 61 6e 73 6d  69 74 74 65 64 2c 20 77  |e transmitted, w|
000012b0  68 69 6c 73 74 20 2a 54  45 4c 45 53 4f 46 54 20  |hilst *TELESOFT |
000012c0  77 69 74 68 20 2a 44 41  54 41 0d 74 72 61 6e 73  |with *DATA.trans|
000012d0  66 65 72 73 20 74 68 65  20 70 61 67 65 20 77 69  |fers the page wi|
000012e0  74 68 20 70 61 63 6b 65  74 20 32 37 20 69 6e 20  |th packet 27 in |
000012f0  74 68 65 20 63 6f 72 72  65 63 74 20 6c 6f 63 61  |the correct loca|
00001300  74 69 6f 6e 2c 20 64 6f  75 62 6c 65 2d 68 65 69  |tion, double-hei|
00001310  67 68 74 0d 70 61 63 6b  65 74 73 20 64 75 70 6c  |ght.packets dupl|
00001320  69 63 61 74 65 64 20 63  6f 72 72 65 63 74 6c 79  |icated correctly|
00001330  2c 20 61 6e 64 20 6e 6f  6e 2d 62 72 6f 61 64 63  |, and non-broadc|
00001340  61 73 74 20 70 61 63 6b  65 74 73 20 72 65 70 6c  |ast packets repl|
00001350  61 63 65 64 20 77 69 74  68 0d 73 70 61 63 65 73  |aced with.spaces|
00001360  20 28 75 6e 6c 65 73 73  20 75 73 65 64 20 66 6f  | (unless used fo|
00001370  72 20 64 6f 75 62 6c 65  2d 68 65 69 67 68 74 20  |r double-height |
00001380  72 6f 77 73 29 2e 0d 0d  0d 0d 0d 20 20 20 20 20  |rows)......     |
00001390  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000013a0  20 20 20 20 20 20 20 20  20 20 20 20 20 50 61 67  |             Pag|
000013b0  65 20 32 0d 0d 0d 0d 0d  0d 0d 0d 0d 49 6e 74 65  |e 2.........Inte|
000013c0  72 61 63 74 69 76 65 20  70 72 6f 67 72 61 6d 6d  |ractive programm|
000013d0  69 6e 67 20 20 20 20 20  20 20 20 20 20 20 20 20  |ing             |
000013e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000013f0  20 20 20 20 20 4a 2e 4a  2e 42 72 61 79 73 68 61  |     J.J.Braysha|
00001400  77 20 31 39 38 37 0d 0d  0d 0d 0d 0d 49 6e 20 74  |w 1987......In t|
00001410  68 65 20 66 69 72 73 74  20 64 69 73 70 6c 61 79  |he first display|
00001420  20 6f 66 20 74 68 65 20  70 72 6f 67 72 61 6d 2c  | of the program,|
00001430  20 74 68 65 20 66 69 72  73 74 20 64 69 67 69 74  | the first digit|
00001440  20 69 73 20 74 68 65 20  6d 61 67 61 7a 69 6e 65  | is the magazine|
00001450  0d 6e 75 6d 62 65 72 20  28 74 61 6b 65 6e 20 66  |.number (taken f|
00001460  72 6f 6d 20 74 68 65 20  66 69 72 73 74 20 62 79  |rom the first by|
00001470  74 65 20 6f 66 20 74 68  65 20 70 61 63 6b 65 74  |te of the packet|
00001480  29 2c 20 74 68 65 20 73  65 63 6f 6e 64 20 6e 75  |), the second nu|
00001490  6d 62 65 72 20 69 73 20  74 68 65 0d 70 61 63 6b  |mber is the.pack|
000014a0  65 74 20 28 72 6f 77 29  20 6e 75 6d 62 65 72 2c  |et (row) number,|
000014b0  20 74 61 6b 65 6e 20 66  72 6f 6d 20 74 68 65 20  | taken from the |
000014c0  73 65 63 6f 6e 64 20 62  79 74 65 20 6f 66 20 74  |second byte of t|
000014d0  68 65 20 70 61 63 6b 65  74 2e 20 42 6f 74 68 20  |he packet. Both |
000014e0  6f 66 0d 74 68 65 73 65  20 68 61 76 65 20 62 65  |of.these have be|
000014f0  65 6e 20 69 6e 74 65 72  70 72 65 74 65 64 20 61  |en interpreted a|
00001500  73 20 41 53 43 49 49 20  63 68 61 72 61 63 74 65  |s ASCII characte|
00001510  72 73 2c 20 61 73 20 74  68 65 79 20 61 72 65 20  |rs, as they are |
00001520  61 63 74 75 61 6c 6c 79  0d 74 72 61 6e 73 6d 69  |actually.transmi|
00001530  74 74 65 64 20 61 73 20  74 68 65 20 62 69 6e 61  |tted as the bina|
00001540  72 79 20 63 6f 64 65 20  6f 66 20 74 68 65 20 61  |ry code of the a|
00001550  70 70 72 6f 70 72 69 61  74 65 20 76 61 6c 75 65  |ppropriate value|
00001560  20 28 69 2e 65 2e 20 69  66 20 74 68 65 0d 6d 61  | (i.e. if the.ma|
00001570  67 61 7a 69 6e 65 20 6e  75 6d 62 65 72 20 69 73  |gazine number is|
00001580  20 74 77 6f 2c 20 74 68  69 73 20 69 73 20 74 72  | two, this is tr|
00001590  61 6e 73 6d 69 74 74 65  64 20 61 73 20 43 48 52  |ansmitted as CHR|
000015a0  24 28 32 29 20 77 68 69  63 68 20 68 61 73 20 62  |$(2) which has b|
000015b0  65 65 6e 0d 69 6e 74 65  72 70 72 65 74 65 64 20  |een.interpreted |
000015c0  66 6f 72 20 74 68 65 20  64 69 73 70 6c 61 79 20  |for the display |
000015d0  61 73 20 74 68 65 20 64  69 67 69 74 20 22 32 22  |as the digit "2"|
000015e0  29 2e 20 53 75 69 74 61  62 6c 65 20 73 70 61 63  |). Suitable spac|
000015f0  69 6e 67 20 68 61 73 20  62 65 65 6e 0d 61 64 64  |ing has been.add|
00001600  65 64 20 74 6f 20 63 6c  61 72 69 66 79 20 74 68  |ed to clarify th|
00001610  65 20 64 69 73 70 6c 61  79 2e 20 54 68 65 20 72  |e display. The r|
00001620  65 6d 61 69 6e 69 6e 67  20 62 79 74 65 73 20 61  |emaining bytes a|
00001630  72 65 20 74 68 65 20 34  30 20 64 61 74 61 20 62  |re the 40 data b|
00001640  79 74 65 73 0d 66 72 6f  6d 20 74 68 65 20 70 61  |ytes.from the pa|
00001650  63 6b 65 74 2e 20 43 6f  6e 74 72 6f 6c 20 63 6f  |cket. Control co|
00001660  64 65 73 20 65 74 63 2e  20 68 61 76 65 20 62 65  |des etc. have be|
00001670  65 6e 20 61 6c 74 65 72  65 64 20 74 6f 20 73 70  |en altered to sp|
00001680  61 63 65 73 20 74 6f 20  61 76 6f 69 64 0d 70 72  |aces to avoid.pr|
00001690  6f 62 6c 65 6d 73 20 77  69 74 68 20 74 68 65 20  |oblems with the |
000016a0  4d 6f 64 65 20 30 20 64  69 73 70 6c 61 79 2e 0d  |Mode 0 display..|
000016b0  0d 49 74 20 69 73 20 69  6e 74 65 72 65 73 74 69  |.It is interesti|
000016c0  6e 67 20 74 6f 20 61 6c  74 65 72 20 74 68 65 20  |ng to alter the |
000016d0  70 72 6f 67 72 61 6d 20  74 6f 20 6c 6f 6f 6b 20  |program to look |
000016e0  61 74 20 42 42 43 32 2c  20 70 61 67 65 20 37 30  |at BBC2, page 70|
000016f0  30 2e 20 54 68 69 73 0d  73 68 6f 75 6c 64 20 73  |0. This.should s|
00001700  68 6f 77 20 66 6f 75 72  20 64 69 66 66 65 72 65  |how four differe|
00001710  6e 74 20 70 61 63 6b 65  74 20 32 37 27 73 2c 20  |nt packet 27's, |
00001720  70 6c 75 73 20 70 61 63  6b 65 74 73 20 32 34 20  |plus packets 24 |
00001730  61 6e 64 20 32 35 20 28  69 6e 20 66 61 63 74 0d  |and 25 (in fact.|
00001740  74 68 65 20 6d 61 78 69  6d 75 6d 20 70 6f 73 73  |the maximum poss|
00001750  69 62 6c 65 20 64 61 74  61 20 66 6f 72 20 61 20  |ible data for a |
00001760  4c 65 76 65 6c 20 31 20  46 4c 4f 46 20 74 65 6c  |Level 1 FLOF tel|
00001770  65 74 65 78 74 20 74 72  61 6e 73 6d 69 73 73 69  |etext transmissi|
00001780  6f 6e 29 2e 0d 54 68 65  73 65 20 61 64 64 69 74  |on)..These addit|
00001790  69 6f 6e 61 6c 20 70 61  63 6b 65 74 73 20 32 37  |ional packets 27|
000017a0  27 73 20 61 72 65 20 75  6e 69 71 75 65 6c 79 20  |'s are uniquely |
000017b0  69 64 65 6e 74 69 66 69  65 64 20 62 79 20 74 68  |identified by th|
000017c0  65 20 66 69 72 73 74 20  64 61 74 61 0d 62 79 74  |e first data.byt|
000017d0  65 2c 20 61 6e 64 20 63  61 72 72 79 20 74 68 65  |e, and carry the|
000017e0  20 64 65 74 61 69 6c 73  20 6f 66 20 74 68 65 20  | details of the |
000017f0  66 75 6c 6c 20 32 34 20  70 61 67 65 20 6c 69 6e  |full 24 page lin|
00001800  6b 73 2e 0d 0d 42 65 77  61 72 65 2c 20 68 6f 77  |ks...Beware, how|
00001810  65 76 65 72 2c 20 61 73  20 65 76 65 6e 20 74 68  |ever, as even th|
00001820  6f 75 67 68 20 2a 44 41  54 41 20 61 6c 73 6f 20  |ough *DATA also |
00001830  74 72 61 6e 73 66 65 72  73 20 70 61 63 6b 65 74  |transfers packet|
00001840  20 32 37 2c 20 74 68 65  20 41 54 53 0d 4f 53 57  | 27, the ATS.OSW|
00001850  4f 52 44 20 63 61 6c 6c  20 74 6f 20 63 68 65 63  |ORD call to chec|
00001860  6b 20 74 68 65 20 43 52  43 2c 20 77 69 6c 6c 20  |k the CRC, will |
00001870  66 61 69 6c 20 62 65 63  61 75 73 65 20 74 68 65  |fail because the|
00001880  20 70 61 67 65 20 69 73  20 6e 6f 20 6c 6f 6e 67  | page is no long|
00001890  65 72 20 69 6e 0d 74 68  65 20 65 78 70 65 63 74  |er in.the expect|
000018a0  65 64 20 66 6f 72 6d 61  74 2e 20 28 53 65 65 20  |ed format. (See |
000018b0  41 54 53 30 31 20 66 6f  72 20 64 65 74 61 69 6c  |ATS01 for detail|
000018c0  73 20 6f 66 20 74 68 65  20 43 52 43 20 63 61 6c  |s of the CRC cal|
000018d0  63 75 6c 61 74 69 6f 6e  73 29 2e 0d 0d 55 73 69  |culations)...Usi|
000018e0  6e 67 20 74 68 65 20 2a  54 45 4c 45 53 4f 46 54  |ng the *TELESOFT|
000018f0  20 63 6f 6d 6d 61 6e 64  20 6f 66 66 65 72 73 20  | command offers |
00001900  73 61 76 69 6e 67 73 20  69 6e 20 62 6f 74 68 20  |savings in both |
00001910  73 70 61 63 65 20 61 6e  64 20 70 72 6f 63 65 73  |space and proces|
00001920  73 69 6e 67 2c 0d 61 6e  64 20 63 61 6e 20 62 65  |sing,.and can be|
00001930  20 75 73 65 64 20 69 6e  20 6d 6f 73 74 20 74 65  | used in most te|
00001940  6c 65 74 65 78 74 20 61  70 70 6c 69 63 61 74 69  |letext applicati|
00001950  6f 6e 73 20 73 6f 66 74  77 61 72 65 20 66 6f 72  |ons software for|
00001960  20 6c 69 6d 69 74 65 64  0d 70 75 72 70 6f 73 65  | limited.purpose|
00001970  73 2e 20 49 74 20 63 61  6e 6e 6f 74 20 62 65 20  |s. It cannot be |
00001980  75 73 65 64 20 77 68 65  72 65 20 73 6f 6d 65 20  |used where some |
00001990  6f 66 20 74 68 65 20 6d  6f 72 65 20 61 64 76 61  |of the more adva|
000019a0  6e 63 65 64 20 74 65 6c  65 74 65 78 74 0d 66 65  |nced teletext.fe|
000019b0  61 74 75 72 65 73 2c 20  69 6e 63 6c 75 64 69 6e  |atures, includin|
000019c0  67 20 70 61 67 65 20 64  61 74 61 20 69 6e 74 65  |g page data inte|
000019d0  67 72 69 74 79 20 63 68  65 63 6b 69 6e 67 20 6f  |grity checking o|
000019e0  72 20 70 61 67 65 20 6c  69 6e 6b 20 64 65 63 6f  |r page link deco|
000019f0  64 69 6e 67 2c 0d 61 72  65 20 6e 65 65 64 65 64  |ding,.are needed|
00001a00  2e 20 46 6f 72 20 73 75  63 68 20 61 70 70 6c 69  |. For such appli|
00001a10  63 61 74 69 6f 6e 73 2c  20 74 68 65 20 2a 54 54  |cations, the *TT|
00001a20  58 4f 4e 20 6d 6f 64 65  20 6d 75 73 74 20 62 65  |XON mode must be|
00001a30  20 75 73 65 64 2c 20 69  6e 76 6f 6c 76 69 6e 67  | used, involving|
00001a40  0d 61 64 64 69 74 69 6f  6e 61 6c 20 70 72 6f 63  |.additional proc|
00001a50  65 73 73 69 6e 67 20 77  69 74 68 69 6e 20 79 6f  |essing within yo|
00001a60  75 72 20 6f 77 6e 20 73  6f 66 74 77 61 72 65 20  |ur own software |
00001a70  74 6f 20 65 78 74 72 61  63 74 20 74 68 65 20 70  |to extract the p|
00001a80  72 65 63 69 73 65 0d 69  6e 66 6f 72 6d 61 74 69  |recise.informati|
00001a90  6f 6e 20 72 65 71 75 69  72 65 64 2c 20 62 75 74  |on required, but|
00001aa0  20 6b 65 65 70 69 6e 67  20 66 75 6c 6c 20 63 6f  | keeping full co|
00001ab0  6e 74 72 6f 6c 20 6f 66  20 74 68 65 20 64 61 74  |ntrol of the dat|
00001ac0  61 20 77 69 74 68 20 74  68 65 0d 70 72 6f 67 72  |a with the.progr|
00001ad0  61 6d 6d 65 72 2e 0d 0d  0d 0d 0d 0d 0d 0d 0d 0d  |ammer...........|
00001ae0  0d 0d 0d 0d 0d 0d 0d 0d  0d 0d 0d 0d 0d 20 20 20  |.............   |
00001af0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001b00  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 50  |               P|
00001b10  61 67 65 20 33 0d 0d 0d  0d 0d                    |age 3.....|
00001b1a
ATS/T\ATS13.m0
ATS/T\ATS13.m1
ATS/T\ATS13.m2
ATS/T\ATS13.m4
ATS/T\ATS13.m5