Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_31.ADF » F/+HINT1

F/+HINT1

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 ADFS disks » Electron_User_Group » EUG_31.ADF
Filename: F/+HINT1
Read OK:
File size: 0E99 bytes
Load address: 2B204556
Exec address: 544E4948
File contents
Electron User Guide Errata
-----------------------------------------------------------------------------

For your information the example on page 34 should read:

        VDU 19,2,RND(3)+1,0,0,0

The example on page 59 should read:

        10    A$ = "J"
        20    PRINT A$; A$; A$
        30    PRINT A$; A$; A$ 
        40    PRINT A$' A$' A$
        >      RUN

The example on page 60 should read:

        10   X = 6
        20   A$ = "J"
        30   PRINT X,X,X' A$, A$, A$
        >    RUN

On page 95 the following statements should read:

        40 VDU 23,1,0;0;0;0'

        VDU 23,1,1;0;0;0

On page 100 the FX phrases on lines 1 and 9 should be replaced by OSWORD.

On page 114 please read Mode 7 as Mode 6 - due the fact that Mode 7 is not
available on the Electron.

--------------------------------------------------------------------------
*FX/Osbyte features not documented in the BBC Micro User Guide
-----------------------------------------------------------------------------

&0D  (13)
Two undocumented parameters may be supplied in X to disable events:

        X = 7  disable RS423 receive error event
        X = 8  disable service/network error event


&0E  (14)
As above, two undocumented parameters may be supplied in X to enable events:

        X = 7  enable RS423 receive error event
        X = 8  enable service/network error event

Events are explained on p465 of the User Guide.


&76  (117)
This call returns the VDU status byte (which contains various status flags)
in the X register. 

        BIT 0 - set if VDU2 sent, cleared by VDU3
        BIT 2 - set if PAGED MODE ON,  cleared if PAGED MODE OFF
        BIT 3 - set if software scrolling, cleared if hardware scrolling

Software scrolling is used when text windows have been defined whereas
hardware scrolls are used when the whole screen scrolls. 

        BIT 5 - set when cursors joined by VDU5
        BIT 7 - set if VDU disabled


&76  (118)
Returns with the carry bit if the CTRL key is pressed, and with the Negative
bit set if the SHIFT key is pressed. Machine code routines may branch on
these conditions.  This feature is invalid when called from a Second
Processor.


&7B  (123)
This call is used by the User Print Routine to indicate to the MOS that it
has finished its task.  (CF *FX 5.3 command). This feature should not
normally be called from a Second Processor.


&8A  (138)
This call has been expanded to allow a character to be inserted into any
buffer.  X must contain the buffer number, and Y the character to be
inserted. A list of buffer numbers appears with *FX 21 on p428 of the User
Guide.


&8D  (141)
This command is exactly equivalent to the *ROM command.


&98  (152)
This call examines a buffer. The buffer number must be in X, and the call
returns as follows:

        Carry bit set if buffer empty
        Carry bit clear indicates character(s) present in buffer.

Note that no character has been removed from the buffer.


&99  (153)
The call inserts a character into an INPUT buffer handling the interrupt
character, and generating an escape condition if necessary. 

        Valid only for X = 0 or 1
        Y must contain character to be inserted


&9C  (156)
Change 6850 control register. The 6859 register is altered to:  (Old value
AND Y) EOR X.  (See User Guide page 438).

Refer to the 6850 Data Sheet for details of the 6850 control register.


&9E  (158) / &9F (159)
These calls respectively read and write to the Speech Processor chip. Refer
to the Speech System User Guide.


&E9  (233)
As for &E7 (see User Guide page 441) but affects the system 6522. The system
6522 is used extensively in the normal operation of the machine and
consequently this call should be used with extreme care.

00000000  45 6c 65 63 74 72 6f 6e  20 55 73 65 72 20 47 75  |Electron User Gu|
00000010  69 64 65 20 45 72 72 61  74 61 0d 2d 2d 2d 2d 2d  |ide Errata.-----|
00000020  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00000060  2d 2d 2d 2d 2d 2d 2d 2d  0d 0d 46 6f 72 20 79 6f  |--------..For yo|
00000070  75 72 20 69 6e 66 6f 72  6d 61 74 69 6f 6e 20 74  |ur information t|
00000080  68 65 20 65 78 61 6d 70  6c 65 20 6f 6e 20 70 61  |he example on pa|
00000090  67 65 20 33 34 20 73 68  6f 75 6c 64 20 72 65 61  |ge 34 should rea|
000000a0  64 3a 0d 0d 20 20 20 20  20 20 20 20 56 44 55 20  |d:..        VDU |
000000b0  31 39 2c 32 2c 52 4e 44  28 33 29 2b 31 2c 30 2c  |19,2,RND(3)+1,0,|
000000c0  30 2c 30 0d 0d 54 68 65  20 65 78 61 6d 70 6c 65  |0,0..The example|
000000d0  20 6f 6e 20 70 61 67 65  20 35 39 20 73 68 6f 75  | on page 59 shou|
000000e0  6c 64 20 72 65 61 64 3a  0d 0d 20 20 20 20 20 20  |ld read:..      |
000000f0  20 20 31 30 20 20 20 20  41 24 20 3d 20 22 4a 22  |  10    A$ = "J"|
00000100  0d 20 20 20 20 20 20 20  20 32 30 20 20 20 20 50  |.        20    P|
00000110  52 49 4e 54 20 41 24 3b  20 41 24 3b 20 41 24 0d  |RINT A$; A$; A$.|
00000120  20 20 20 20 20 20 20 20  33 30 20 20 20 20 50 52  |        30    PR|
00000130  49 4e 54 20 41 24 3b 20  41 24 3b 20 41 24 20 0d  |INT A$; A$; A$ .|
00000140  20 20 20 20 20 20 20 20  34 30 20 20 20 20 50 52  |        40    PR|
00000150  49 4e 54 20 41 24 27 20  41 24 27 20 41 24 0d 20  |INT A$' A$' A$. |
00000160  20 20 20 20 20 20 20 3e  20 20 20 20 20 20 52 55  |       >      RU|
00000170  4e 0d 0d 54 68 65 20 65  78 61 6d 70 6c 65 20 6f  |N..The example o|
00000180  6e 20 70 61 67 65 20 36  30 20 73 68 6f 75 6c 64  |n page 60 should|
00000190  20 72 65 61 64 3a 0d 0d  20 20 20 20 20 20 20 20  | read:..        |
000001a0  31 30 20 20 20 58 20 3d  20 36 0d 20 20 20 20 20  |10   X = 6.     |
000001b0  20 20 20 32 30 20 20 20  41 24 20 3d 20 22 4a 22  |   20   A$ = "J"|
000001c0  0d 20 20 20 20 20 20 20  20 33 30 20 20 20 50 52  |.        30   PR|
000001d0  49 4e 54 20 58 2c 58 2c  58 27 20 41 24 2c 20 41  |INT X,X,X' A$, A|
000001e0  24 2c 20 41 24 0d 20 20  20 20 20 20 20 20 3e 20  |$, A$.        > |
000001f0  20 20 20 52 55 4e 0d 0d  4f 6e 20 70 61 67 65 20  |   RUN..On page |
00000200  39 35 20 74 68 65 20 66  6f 6c 6c 6f 77 69 6e 67  |95 the following|
00000210  20 73 74 61 74 65 6d 65  6e 74 73 20 73 68 6f 75  | statements shou|
00000220  6c 64 20 72 65 61 64 3a  0d 0d 20 20 20 20 20 20  |ld read:..      |
00000230  20 20 34 30 20 56 44 55  20 32 33 2c 31 2c 30 3b  |  40 VDU 23,1,0;|
00000240  30 3b 30 3b 30 27 0d 0d  20 20 20 20 20 20 20 20  |0;0;0'..        |
00000250  56 44 55 20 32 33 2c 31  2c 31 3b 30 3b 30 3b 30  |VDU 23,1,1;0;0;0|
00000260  0d 0d 4f 6e 20 70 61 67  65 20 31 30 30 20 74 68  |..On page 100 th|
00000270  65 20 46 58 20 70 68 72  61 73 65 73 20 6f 6e 20  |e FX phrases on |
00000280  6c 69 6e 65 73 20 31 20  61 6e 64 20 39 20 73 68  |lines 1 and 9 sh|
00000290  6f 75 6c 64 20 62 65 20  72 65 70 6c 61 63 65 64  |ould be replaced|
000002a0  20 62 79 20 4f 53 57 4f  52 44 2e 0d 0d 4f 6e 20  | by OSWORD...On |
000002b0  70 61 67 65 20 31 31 34  20 70 6c 65 61 73 65 20  |page 114 please |
000002c0  72 65 61 64 20 4d 6f 64  65 20 37 20 61 73 20 4d  |read Mode 7 as M|
000002d0  6f 64 65 20 36 20 2d 20  64 75 65 20 74 68 65 20  |ode 6 - due the |
000002e0  66 61 63 74 20 74 68 61  74 20 4d 6f 64 65 20 37  |fact that Mode 7|
000002f0  20 69 73 20 6e 6f 74 0d  61 76 61 69 6c 61 62 6c  | is not.availabl|
00000300  65 20 6f 6e 20 74 68 65  20 45 6c 65 63 74 72 6f  |e on the Electro|
00000310  6e 2e 0d 0d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |n...------------|
00000320  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00000350  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 0d 2a  |--------------.*|
00000360  46 58 2f 4f 73 62 79 74  65 20 66 65 61 74 75 72  |FX/Osbyte featur|
00000370  65 73 20 6e 6f 74 20 64  6f 63 75 6d 65 6e 74 65  |es not documente|
00000380  64 20 69 6e 20 74 68 65  20 42 42 43 20 4d 69 63  |d in the BBC Mic|
00000390  72 6f 20 55 73 65 72 20  47 75 69 64 65 0d 2d 2d  |ro User Guide.--|
000003a0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
000003e0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 0d 0d 26 30 44  |-----------..&0D|
000003f0  20 20 28 31 33 29 0d 54  77 6f 20 75 6e 64 6f 63  |  (13).Two undoc|
00000400  75 6d 65 6e 74 65 64 20  70 61 72 61 6d 65 74 65  |umented paramete|
00000410  72 73 20 6d 61 79 20 62  65 20 73 75 70 70 6c 69  |rs may be suppli|
00000420  65 64 20 69 6e 20 58 20  74 6f 20 64 69 73 61 62  |ed in X to disab|
00000430  6c 65 20 65 76 65 6e 74  73 3a 0d 0d 20 20 20 20  |le events:..    |
00000440  20 20 20 20 58 20 3d 20  37 20 20 64 69 73 61 62  |    X = 7  disab|
00000450  6c 65 20 52 53 34 32 33  20 72 65 63 65 69 76 65  |le RS423 receive|
00000460  20 65 72 72 6f 72 20 65  76 65 6e 74 0d 20 20 20  | error event.   |
00000470  20 20 20 20 20 58 20 3d  20 38 20 20 64 69 73 61  |     X = 8  disa|
00000480  62 6c 65 20 73 65 72 76  69 63 65 2f 6e 65 74 77  |ble service/netw|
00000490  6f 72 6b 20 65 72 72 6f  72 20 65 76 65 6e 74 0d  |ork error event.|
000004a0  0d 0d 26 30 45 20 20 28  31 34 29 0d 41 73 20 61  |..&0E  (14).As a|
000004b0  62 6f 76 65 2c 20 74 77  6f 20 75 6e 64 6f 63 75  |bove, two undocu|
000004c0  6d 65 6e 74 65 64 20 70  61 72 61 6d 65 74 65 72  |mented parameter|
000004d0  73 20 6d 61 79 20 62 65  20 73 75 70 70 6c 69 65  |s may be supplie|
000004e0  64 20 69 6e 20 58 20 74  6f 20 65 6e 61 62 6c 65  |d in X to enable|
000004f0  20 65 76 65 6e 74 73 3a  0d 0d 20 20 20 20 20 20  | events:..      |
00000500  20 20 58 20 3d 20 37 20  20 65 6e 61 62 6c 65 20  |  X = 7  enable |
00000510  52 53 34 32 33 20 72 65  63 65 69 76 65 20 65 72  |RS423 receive er|
00000520  72 6f 72 20 65 76 65 6e  74 0d 20 20 20 20 20 20  |ror event.      |
00000530  20 20 58 20 3d 20 38 20  20 65 6e 61 62 6c 65 20  |  X = 8  enable |
00000540  73 65 72 76 69 63 65 2f  6e 65 74 77 6f 72 6b 20  |service/network |
00000550  65 72 72 6f 72 20 65 76  65 6e 74 0d 0d 45 76 65  |error event..Eve|
00000560  6e 74 73 20 61 72 65 20  65 78 70 6c 61 69 6e 65  |nts are explaine|
00000570  64 20 6f 6e 20 70 34 36  35 20 6f 66 20 74 68 65  |d on p465 of the|
00000580  20 55 73 65 72 20 47 75  69 64 65 2e 0d 0d 0d 26  | User Guide....&|
00000590  37 36 20 20 28 31 31 37  29 0d 54 68 69 73 20 63  |76  (117).This c|
000005a0  61 6c 6c 20 72 65 74 75  72 6e 73 20 74 68 65 20  |all returns the |
000005b0  56 44 55 20 73 74 61 74  75 73 20 62 79 74 65 20  |VDU status byte |
000005c0  28 77 68 69 63 68 20 63  6f 6e 74 61 69 6e 73 20  |(which contains |
000005d0  76 61 72 69 6f 75 73 20  73 74 61 74 75 73 20 66  |various status f|
000005e0  6c 61 67 73 29 0d 69 6e  20 74 68 65 20 58 20 72  |lags).in the X r|
000005f0  65 67 69 73 74 65 72 2e  20 0d 0d 20 20 20 20 20  |egister. ..     |
00000600  20 20 20 42 49 54 20 30  20 2d 20 73 65 74 20 69  |   BIT 0 - set i|
00000610  66 20 56 44 55 32 20 73  65 6e 74 2c 20 63 6c 65  |f VDU2 sent, cle|
00000620  61 72 65 64 20 62 79 20  56 44 55 33 0d 20 20 20  |ared by VDU3.   |
00000630  20 20 20 20 20 42 49 54  20 32 20 2d 20 73 65 74  |     BIT 2 - set|
00000640  20 69 66 20 50 41 47 45  44 20 4d 4f 44 45 20 4f  | if PAGED MODE O|
00000650  4e 2c 20 20 63 6c 65 61  72 65 64 20 69 66 20 50  |N,  cleared if P|
00000660  41 47 45 44 20 4d 4f 44  45 20 4f 46 46 0d 20 20  |AGED MODE OFF.  |
00000670  20 20 20 20 20 20 42 49  54 20 33 20 2d 20 73 65  |      BIT 3 - se|
00000680  74 20 69 66 20 73 6f 66  74 77 61 72 65 20 73 63  |t if software sc|
00000690  72 6f 6c 6c 69 6e 67 2c  20 63 6c 65 61 72 65 64  |rolling, cleared|
000006a0  20 69 66 20 68 61 72 64  77 61 72 65 20 73 63 72  | if hardware scr|
000006b0  6f 6c 6c 69 6e 67 0d 0d  53 6f 66 74 77 61 72 65  |olling..Software|
000006c0  20 73 63 72 6f 6c 6c 69  6e 67 20 69 73 20 75 73  | scrolling is us|
000006d0  65 64 20 77 68 65 6e 20  74 65 78 74 20 77 69 6e  |ed when text win|
000006e0  64 6f 77 73 20 68 61 76  65 20 62 65 65 6e 20 64  |dows have been d|
000006f0  65 66 69 6e 65 64 20 77  68 65 72 65 61 73 0d 68  |efined whereas.h|
00000700  61 72 64 77 61 72 65 20  73 63 72 6f 6c 6c 73 20  |ardware scrolls |
00000710  61 72 65 20 75 73 65 64  20 77 68 65 6e 20 74 68  |are used when th|
00000720  65 20 77 68 6f 6c 65 20  73 63 72 65 65 6e 20 73  |e whole screen s|
00000730  63 72 6f 6c 6c 73 2e 20  0d 0d 20 20 20 20 20 20  |crolls. ..      |
00000740  20 20 42 49 54 20 35 20  2d 20 73 65 74 20 77 68  |  BIT 5 - set wh|
00000750  65 6e 20 63 75 72 73 6f  72 73 20 6a 6f 69 6e 65  |en cursors joine|
00000760  64 20 62 79 20 56 44 55  35 0d 20 20 20 20 20 20  |d by VDU5.      |
00000770  20 20 42 49 54 20 37 20  2d 20 73 65 74 20 69 66  |  BIT 7 - set if|
00000780  20 56 44 55 20 64 69 73  61 62 6c 65 64 0d 0d 0d  | VDU disabled...|
00000790  26 37 36 20 20 28 31 31  38 29 0d 52 65 74 75 72  |&76  (118).Retur|
000007a0  6e 73 20 77 69 74 68 20  74 68 65 20 63 61 72 72  |ns with the carr|
000007b0  79 20 62 69 74 20 69 66  20 74 68 65 20 43 54 52  |y bit if the CTR|
000007c0  4c 20 6b 65 79 20 69 73  20 70 72 65 73 73 65 64  |L key is pressed|
000007d0  2c 20 61 6e 64 20 77 69  74 68 20 74 68 65 20 4e  |, and with the N|
000007e0  65 67 61 74 69 76 65 0d  62 69 74 20 73 65 74 20  |egative.bit set |
000007f0  69 66 20 74 68 65 20 53  48 49 46 54 20 6b 65 79  |if the SHIFT key|
00000800  20 69 73 20 70 72 65 73  73 65 64 2e 20 4d 61 63  | is pressed. Mac|
00000810  68 69 6e 65 20 63 6f 64  65 20 72 6f 75 74 69 6e  |hine code routin|
00000820  65 73 20 6d 61 79 20 62  72 61 6e 63 68 20 6f 6e  |es may branch on|
00000830  0d 74 68 65 73 65 20 63  6f 6e 64 69 74 69 6f 6e  |.these condition|
00000840  73 2e 20 20 54 68 69 73  20 66 65 61 74 75 72 65  |s.  This feature|
00000850  20 69 73 20 69 6e 76 61  6c 69 64 20 77 68 65 6e  | is invalid when|
00000860  20 63 61 6c 6c 65 64 20  66 72 6f 6d 20 61 20 53  | called from a S|
00000870  65 63 6f 6e 64 0d 50 72  6f 63 65 73 73 6f 72 2e  |econd.Processor.|
00000880  0d 0d 0d 26 37 42 20 20  28 31 32 33 29 0d 54 68  |...&7B  (123).Th|
00000890  69 73 20 63 61 6c 6c 20  69 73 20 75 73 65 64 20  |is call is used |
000008a0  62 79 20 74 68 65 20 55  73 65 72 20 50 72 69 6e  |by the User Prin|
000008b0  74 20 52 6f 75 74 69 6e  65 20 74 6f 20 69 6e 64  |t Routine to ind|
000008c0  69 63 61 74 65 20 74 6f  20 74 68 65 20 4d 4f 53  |icate to the MOS|
000008d0  20 74 68 61 74 20 69 74  0d 68 61 73 20 66 69 6e  | that it.has fin|
000008e0  69 73 68 65 64 20 69 74  73 20 74 61 73 6b 2e 20  |ished its task. |
000008f0  20 28 43 46 20 2a 46 58  20 35 2e 33 20 63 6f 6d  | (CF *FX 5.3 com|
00000900  6d 61 6e 64 29 2e 20 54  68 69 73 20 66 65 61 74  |mand). This feat|
00000910  75 72 65 20 73 68 6f 75  6c 64 20 6e 6f 74 0d 6e  |ure should not.n|
00000920  6f 72 6d 61 6c 6c 79 20  62 65 20 63 61 6c 6c 65  |ormally be calle|
00000930  64 20 66 72 6f 6d 20 61  20 53 65 63 6f 6e 64 20  |d from a Second |
00000940  50 72 6f 63 65 73 73 6f  72 2e 0d 0d 0d 26 38 41  |Processor....&8A|
00000950  20 20 28 31 33 38 29 0d  54 68 69 73 20 63 61 6c  |  (138).This cal|
00000960  6c 20 68 61 73 20 62 65  65 6e 20 65 78 70 61 6e  |l has been expan|
00000970  64 65 64 20 74 6f 20 61  6c 6c 6f 77 20 61 20 63  |ded to allow a c|
00000980  68 61 72 61 63 74 65 72  20 74 6f 20 62 65 20 69  |haracter to be i|
00000990  6e 73 65 72 74 65 64 20  69 6e 74 6f 20 61 6e 79  |nserted into any|
000009a0  0d 62 75 66 66 65 72 2e  20 20 58 20 6d 75 73 74  |.buffer.  X must|
000009b0  20 63 6f 6e 74 61 69 6e  20 74 68 65 20 62 75 66  | contain the buf|
000009c0  66 65 72 20 6e 75 6d 62  65 72 2c 20 61 6e 64 20  |fer number, and |
000009d0  59 20 74 68 65 20 63 68  61 72 61 63 74 65 72 20  |Y the character |
000009e0  74 6f 20 62 65 0d 69 6e  73 65 72 74 65 64 2e 20  |to be.inserted. |
000009f0  41 20 6c 69 73 74 20 6f  66 20 62 75 66 66 65 72  |A list of buffer|
00000a00  20 6e 75 6d 62 65 72 73  20 61 70 70 65 61 72 73  | numbers appears|
00000a10  20 77 69 74 68 20 2a 46  58 20 32 31 20 6f 6e 20  | with *FX 21 on |
00000a20  70 34 32 38 20 6f 66 20  74 68 65 20 55 73 65 72  |p428 of the User|
00000a30  0d 47 75 69 64 65 2e 0d  0d 0d 26 38 44 20 20 28  |.Guide....&8D  (|
00000a40  31 34 31 29 0d 54 68 69  73 20 63 6f 6d 6d 61 6e  |141).This comman|
00000a50  64 20 69 73 20 65 78 61  63 74 6c 79 20 65 71 75  |d is exactly equ|
00000a60  69 76 61 6c 65 6e 74 20  74 6f 20 74 68 65 20 2a  |ivalent to the *|
00000a70  52 4f 4d 20 63 6f 6d 6d  61 6e 64 2e 0d 0d 0d 26  |ROM command....&|
00000a80  39 38 20 20 28 31 35 32  29 0d 54 68 69 73 20 63  |98  (152).This c|
00000a90  61 6c 6c 20 65 78 61 6d  69 6e 65 73 20 61 20 62  |all examines a b|
00000aa0  75 66 66 65 72 2e 20 54  68 65 20 62 75 66 66 65  |uffer. The buffe|
00000ab0  72 20 6e 75 6d 62 65 72  20 6d 75 73 74 20 62 65  |r number must be|
00000ac0  20 69 6e 20 58 2c 20 61  6e 64 20 74 68 65 20 63  | in X, and the c|
00000ad0  61 6c 6c 0d 72 65 74 75  72 6e 73 20 61 73 20 66  |all.returns as f|
00000ae0  6f 6c 6c 6f 77 73 3a 0d  0d 20 20 20 20 20 20 20  |ollows:..       |
00000af0  20 43 61 72 72 79 20 62  69 74 20 73 65 74 20 69  | Carry bit set i|
00000b00  66 20 62 75 66 66 65 72  20 65 6d 70 74 79 0d 20  |f buffer empty. |
00000b10  20 20 20 20 20 20 20 43  61 72 72 79 20 62 69 74  |       Carry bit|
00000b20  20 63 6c 65 61 72 20 69  6e 64 69 63 61 74 65 73  | clear indicates|
00000b30  20 63 68 61 72 61 63 74  65 72 28 73 29 20 70 72  | character(s) pr|
00000b40  65 73 65 6e 74 20 69 6e  20 62 75 66 66 65 72 2e  |esent in buffer.|
00000b50  0d 0d 4e 6f 74 65 20 74  68 61 74 20 6e 6f 20 63  |..Note that no c|
00000b60  68 61 72 61 63 74 65 72  20 68 61 73 20 62 65 65  |haracter has bee|
00000b70  6e 20 72 65 6d 6f 76 65  64 20 66 72 6f 6d 20 74  |n removed from t|
00000b80  68 65 20 62 75 66 66 65  72 2e 0d 0d 0d 26 39 39  |he buffer....&99|
00000b90  20 20 28 31 35 33 29 0d  54 68 65 20 63 61 6c 6c  |  (153).The call|
00000ba0  20 69 6e 73 65 72 74 73  20 61 20 63 68 61 72 61  | inserts a chara|
00000bb0  63 74 65 72 20 69 6e 74  6f 20 61 6e 20 49 4e 50  |cter into an INP|
00000bc0  55 54 20 62 75 66 66 65  72 20 68 61 6e 64 6c 69  |UT buffer handli|
00000bd0  6e 67 20 74 68 65 20 69  6e 74 65 72 72 75 70 74  |ng the interrupt|
00000be0  0d 63 68 61 72 61 63 74  65 72 2c 20 61 6e 64 20  |.character, and |
00000bf0  67 65 6e 65 72 61 74 69  6e 67 20 61 6e 20 65 73  |generating an es|
00000c00  63 61 70 65 20 63 6f 6e  64 69 74 69 6f 6e 20 69  |cape condition i|
00000c10  66 20 6e 65 63 65 73 73  61 72 79 2e 20 0d 0d 20  |f necessary. .. |
00000c20  20 20 20 20 20 20 20 56  61 6c 69 64 20 6f 6e 6c  |       Valid onl|
00000c30  79 20 66 6f 72 20 58 20  3d 20 30 20 6f 72 20 31  |y for X = 0 or 1|
00000c40  0d 20 20 20 20 20 20 20  20 59 20 6d 75 73 74 20  |.        Y must |
00000c50  63 6f 6e 74 61 69 6e 20  63 68 61 72 61 63 74 65  |contain characte|
00000c60  72 20 74 6f 20 62 65 20  69 6e 73 65 72 74 65 64  |r to be inserted|
00000c70  0d 0d 0d 26 39 43 20 20  28 31 35 36 29 0d 43 68  |...&9C  (156).Ch|
00000c80  61 6e 67 65 20 36 38 35  30 20 63 6f 6e 74 72 6f  |ange 6850 contro|
00000c90  6c 20 72 65 67 69 73 74  65 72 2e 20 54 68 65 20  |l register. The |
00000ca0  36 38 35 39 20 72 65 67  69 73 74 65 72 20 69 73  |6859 register is|
00000cb0  20 61 6c 74 65 72 65 64  20 74 6f 3a 20 20 28 4f  | altered to:  (O|
00000cc0  6c 64 20 76 61 6c 75 65  0d 41 4e 44 20 59 29 20  |ld value.AND Y) |
00000cd0  45 4f 52 20 58 2e 20 20  28 53 65 65 20 55 73 65  |EOR X.  (See Use|
00000ce0  72 20 47 75 69 64 65 20  70 61 67 65 20 34 33 38  |r Guide page 438|
00000cf0  29 2e 0d 0d 52 65 66 65  72 20 74 6f 20 74 68 65  |)...Refer to the|
00000d00  20 36 38 35 30 20 44 61  74 61 20 53 68 65 65 74  | 6850 Data Sheet|
00000d10  20 66 6f 72 20 64 65 74  61 69 6c 73 20 6f 66 20  | for details of |
00000d20  74 68 65 20 36 38 35 30  20 63 6f 6e 74 72 6f 6c  |the 6850 control|
00000d30  20 72 65 67 69 73 74 65  72 2e 0d 0d 0d 26 39 45  | register....&9E|
00000d40  20 20 28 31 35 38 29 20  2f 20 26 39 46 20 28 31  |  (158) / &9F (1|
00000d50  35 39 29 0d 54 68 65 73  65 20 63 61 6c 6c 73 20  |59).These calls |
00000d60  72 65 73 70 65 63 74 69  76 65 6c 79 20 72 65 61  |respectively rea|
00000d70  64 20 61 6e 64 20 77 72  69 74 65 20 74 6f 20 74  |d and write to t|
00000d80  68 65 20 53 70 65 65 63  68 20 50 72 6f 63 65 73  |he Speech Proces|
00000d90  73 6f 72 20 63 68 69 70  2e 20 52 65 66 65 72 0d  |sor chip. Refer.|
00000da0  74 6f 20 74 68 65 20 53  70 65 65 63 68 20 53 79  |to the Speech Sy|
00000db0  73 74 65 6d 20 55 73 65  72 20 47 75 69 64 65 2e  |stem User Guide.|
00000dc0  0d 0d 0d 26 45 39 20 20  28 32 33 33 29 0d 41 73  |...&E9  (233).As|
00000dd0  20 66 6f 72 20 26 45 37  20 28 73 65 65 20 55 73  | for &E7 (see Us|
00000de0  65 72 20 47 75 69 64 65  20 70 61 67 65 20 34 34  |er Guide page 44|
00000df0  31 29 20 62 75 74 20 61  66 66 65 63 74 73 20 74  |1) but affects t|
00000e00  68 65 20 73 79 73 74 65  6d 20 36 35 32 32 2e 20  |he system 6522. |
00000e10  54 68 65 20 73 79 73 74  65 6d 0d 36 35 32 32 20  |The system.6522 |
00000e20  69 73 20 75 73 65 64 20  65 78 74 65 6e 73 69 76  |is used extensiv|
00000e30  65 6c 79 20 69 6e 20 74  68 65 20 6e 6f 72 6d 61  |ely in the norma|
00000e40  6c 20 6f 70 65 72 61 74  69 6f 6e 20 6f 66 20 74  |l operation of t|
00000e50  68 65 20 6d 61 63 68 69  6e 65 20 61 6e 64 0d 63  |he machine and.c|
00000e60  6f 6e 73 65 71 75 65 6e  74 6c 79 20 74 68 69 73  |onsequently this|
00000e70  20 63 61 6c 6c 20 73 68  6f 75 6c 64 20 62 65 20  | call should be |
00000e80  75 73 65 64 20 77 69 74  68 20 65 78 74 72 65 6d  |used with extrem|
00000e90  65 20 63 61 72 65 2e 0d  0d                       |e care...|
00000e99
F/+HINT1.m0
F/+HINT1.m1
F/+HINT1.m2
F/+HINT1.m4
F/+HINT1.m5