Home » CEEFAX disks » telesoftware15.adl » 28-04-89/DText

28-04-89/DText

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 » telesoftware15.adl
Filename: 28-04-89/DText
Read OK:
File size: 148B bytes
Load address: 0000
Exec address: FFFFFFFF
File contents
          Advanced User Defined Character Designer
          ========================================



Introduction
------------

Many BBC 'B' owner's would have seen a User Defined Character
Designer before now. And all BBC Master owner's would have seen a
designer as there is one supplied on the 'Welcome' Disc.

These designers allow the user to define their own characters and
then automatically work out the necessary values needed to create
that character. 

These characters may be used as graphics in games or as fonts for
titles and headings.

The designer has proven itself to be a very useful utility as it
saves the programmer a huge amount of time and eliminates the
need to design the characters on paper. 

Unfortunately most Character Designers only allow the user to
design one character at a time. This is a huge disadvantage in
the designing of double height letters and large shapes.

This program however allows the user to design characters
measuring up to 24x24 pixels. That's 9 times the initial
character size!

The next few pages outline how the program is loaded, operated
and the other unique features of this designer.

Loading Instructions
--------------------

The designer will work on a BBC 'B' or higher with DFS fitted.
The program can easily be modified to work on ADFS and TAPE by
making minor changes.

To RUN the program type CHAIN"Loader".

The Title Screen will then load and the user will be advised to
press the Space-Bar. After this the main program will load.
If the DFS uses memory above &E00 this will be reclaimed and the
DFS disabled.

Designing A Character
---------------------

Whenever you enter the main program you will be asked how many
characters you wish to define at a time. This can be anything
from 1 to 9. 

Once you reply a large 'blown-up' grid showing your characters
will be drawn in the centre of the screen. A smaller rectangle
representing the actual size of your character will also be drawn
to the right of the screen. Any changes you make to the large
grid will be shown here therefore allowing you to see what
exactly your character will look like.

On the bottom-left-hand corner of the large grid you will see a
'*'. This represents your cursor which you can control by the 4
cursor keys. The <Space-Bar> acts as a toggle allowing you to
change the colour of the square.
 
 Blue = Off 
 White = On

You will notice any changes you make on the smaller rectangle to
the right.

You will also notice the letters A,B and C along the top of the
grid and the numbers 1,2 and 3 down the left. This allows you to
see what data refers to which character.

Calculating The Values
---------------------- 

Once you have finished designing your character you should press
<Return>. The computer will now start to calculate the necessary
values required to create your character.

Whenever the values have been calculated you will be asked if you
want them printed on paper. If you do please ensure that the
printer is connected and is on-line.

Users of the BBC Master will them be asked would they like the
values to be sent to a file. If so please consult the section
below on sending data to file.

If the user has a BBC 'B' and has no printer he will have to copy
the values down by hand and then retype them into the computer.
This is because the area of memory used by the DFS is needed to
store the data for the program.

You will be prompted to press the <Space-Bar> and then asked if
you would like to define another character. If not the program
will end with PAGE now set at &E00.

 ** NOTE ** Please See Listing Below To Read In Data 

Send Data To File
-----------------

This option is available to users of the BBC Master which has a
DFS not occupying memory locations above &E00.

This will send the values calculated to an Ascii file called
'C/Data' which can be viewed by typing *PRINT C/Data

The file is increased everytime a new character is sent to it. So
it is important that 'C/Data' is the last file on the Disc.

The file can be deleted at anytime as the 'Loader' program checks
each time it is run to see if C/Data is on the Disc. If not a new
file is created.

The command *EXEC C/Data can also be typed. This will create a
basic program containing the Data needed to create the user
defined characters. This program will be similar to the
following:
          
         10REM Values For User Defined Characters
         20REM ==================================
         40REM Character A1
         50REM ============
         70DATA 0,0,0,0,0,0,0,0
         90REM Character A2
        100REM ============
        120DATA 0,0,0,0,0,0,0,0
        140REM Character B1
        150REM ============
        170DATA 0,0,0,0,0,0,0,0
        190REM Character B2
        200REM ============
        220DATA 0,0,0,0,0,0,0,0

The REM lines can be deleted if required to save memory and then
the program can be 'SPOOLed' and merged with a larger program.

A program for reading the data is listed next.

         10 FOR K=128 TO 128+x:REM x=No. of Characters.
         20   VDU 23,K
         30   FOR L=1 TO 8
         40     READ n
         50     VDU n
         60   NEXT
         70 NEXT

** NOTE ** 128 may be changed to whatever character the user
wants to define first.
00000000  0d 20 20 20 20 20 20 20  20 20 20 41 64 76 61 6e  |.          Advan|
00000010  63 65 64 20 55 73 65 72  20 44 65 66 69 6e 65 64  |ced User Defined|
00000020  20 43 68 61 72 61 63 74  65 72 20 44 65 73 69 67  | Character Desig|
00000030  6e 65 72 0d 20 20 20 20  20 20 20 20 20 20 3d 3d  |ner.          ==|
00000040  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000060  3d 3d 3d 3d 3d 3d 0d 0d  0d 0d 49 6e 74 72 6f 64  |======....Introd|
00000070  75 63 74 69 6f 6e 0d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |uction.---------|
00000080  2d 2d 2d 0d 0d 4d 61 6e  79 20 42 42 43 20 27 42  |---..Many BBC 'B|
00000090  27 20 6f 77 6e 65 72 27  73 20 77 6f 75 6c 64 20  |' owner's would |
000000a0  68 61 76 65 20 73 65 65  6e 20 61 20 55 73 65 72  |have seen a User|
000000b0  20 44 65 66 69 6e 65 64  20 43 68 61 72 61 63 74  | Defined Charact|
000000c0  65 72 0d 44 65 73 69 67  6e 65 72 20 62 65 66 6f  |er.Designer befo|
000000d0  72 65 20 6e 6f 77 2e 20  41 6e 64 20 61 6c 6c 20  |re now. And all |
000000e0  42 42 43 20 4d 61 73 74  65 72 20 6f 77 6e 65 72  |BBC Master owner|
000000f0  27 73 20 77 6f 75 6c 64  20 68 61 76 65 20 73 65  |'s would have se|
00000100  65 6e 20 61 0d 64 65 73  69 67 6e 65 72 20 61 73  |en a.designer as|
00000110  20 74 68 65 72 65 20 69  73 20 6f 6e 65 20 73 75  | there is one su|
00000120  70 70 6c 69 65 64 20 6f  6e 20 74 68 65 20 27 57  |pplied on the 'W|
00000130  65 6c 63 6f 6d 65 27 20  44 69 73 63 2e 0d 0d 54  |elcome' Disc...T|
00000140  68 65 73 65 20 64 65 73  69 67 6e 65 72 73 20 61  |hese designers a|
00000150  6c 6c 6f 77 20 74 68 65  20 75 73 65 72 20 74 6f  |llow the user to|
00000160  20 64 65 66 69 6e 65 20  74 68 65 69 72 20 6f 77  | define their ow|
00000170  6e 20 63 68 61 72 61 63  74 65 72 73 20 61 6e 64  |n characters and|
00000180  0d 74 68 65 6e 20 61 75  74 6f 6d 61 74 69 63 61  |.then automatica|
00000190  6c 6c 79 20 77 6f 72 6b  20 6f 75 74 20 74 68 65  |lly work out the|
000001a0  20 6e 65 63 65 73 73 61  72 79 20 76 61 6c 75 65  | necessary value|
000001b0  73 20 6e 65 65 64 65 64  20 74 6f 20 63 72 65 61  |s needed to crea|
000001c0  74 65 0d 74 68 61 74 20  63 68 61 72 61 63 74 65  |te.that characte|
000001d0  72 2e 20 0d 0d 54 68 65  73 65 20 63 68 61 72 61  |r. ..These chara|
000001e0  63 74 65 72 73 20 6d 61  79 20 62 65 20 75 73 65  |cters may be use|
000001f0  64 20 61 73 20 67 72 61  70 68 69 63 73 20 69 6e  |d as graphics in|
00000200  20 67 61 6d 65 73 20 6f  72 20 61 73 20 66 6f 6e  | games or as fon|
00000210  74 73 20 66 6f 72 0d 74  69 74 6c 65 73 20 61 6e  |ts for.titles an|
00000220  64 20 68 65 61 64 69 6e  67 73 2e 0d 0d 54 68 65  |d headings...The|
00000230  20 64 65 73 69 67 6e 65  72 20 68 61 73 20 70 72  | designer has pr|
00000240  6f 76 65 6e 20 69 74 73  65 6c 66 20 74 6f 20 62  |oven itself to b|
00000250  65 20 61 20 76 65 72 79  20 75 73 65 66 75 6c 20  |e a very useful |
00000260  75 74 69 6c 69 74 79 20  61 73 20 69 74 0d 73 61  |utility as it.sa|
00000270  76 65 73 20 74 68 65 20  70 72 6f 67 72 61 6d 6d  |ves the programm|
00000280  65 72 20 61 20 68 75 67  65 20 61 6d 6f 75 6e 74  |er a huge amount|
00000290  20 6f 66 20 74 69 6d 65  20 61 6e 64 20 65 6c 69  | of time and eli|
000002a0  6d 69 6e 61 74 65 73 20  74 68 65 0d 6e 65 65 64  |minates the.need|
000002b0  20 74 6f 20 64 65 73 69  67 6e 20 74 68 65 20 63  | to design the c|
000002c0  68 61 72 61 63 74 65 72  73 20 6f 6e 20 70 61 70  |haracters on pap|
000002d0  65 72 2e 20 0d 0d 55 6e  66 6f 72 74 75 6e 61 74  |er. ..Unfortunat|
000002e0  65 6c 79 20 6d 6f 73 74  20 43 68 61 72 61 63 74  |ely most Charact|
000002f0  65 72 20 44 65 73 69 67  6e 65 72 73 20 6f 6e 6c  |er Designers onl|
00000300  79 20 61 6c 6c 6f 77 20  74 68 65 20 75 73 65 72  |y allow the user|
00000310  20 74 6f 0d 64 65 73 69  67 6e 20 6f 6e 65 20 63  | to.design one c|
00000320  68 61 72 61 63 74 65 72  20 61 74 20 61 20 74 69  |haracter at a ti|
00000330  6d 65 2e 20 54 68 69 73  20 69 73 20 61 20 68 75  |me. This is a hu|
00000340  67 65 20 64 69 73 61 64  76 61 6e 74 61 67 65 20  |ge disadvantage |
00000350  69 6e 0d 74 68 65 20 64  65 73 69 67 6e 69 6e 67  |in.the designing|
00000360  20 6f 66 20 64 6f 75 62  6c 65 20 68 65 69 67 68  | of double heigh|
00000370  74 20 6c 65 74 74 65 72  73 20 61 6e 64 20 6c 61  |t letters and la|
00000380  72 67 65 20 73 68 61 70  65 73 2e 0d 0d 54 68 69  |rge shapes...Thi|
00000390  73 20 70 72 6f 67 72 61  6d 20 68 6f 77 65 76 65  |s program howeve|
000003a0  72 20 61 6c 6c 6f 77 73  20 74 68 65 20 75 73 65  |r allows the use|
000003b0  72 20 74 6f 20 64 65 73  69 67 6e 20 63 68 61 72  |r to design char|
000003c0  61 63 74 65 72 73 0d 6d  65 61 73 75 72 69 6e 67  |acters.measuring|
000003d0  20 75 70 20 74 6f 20 32  34 78 32 34 20 70 69 78  | up to 24x24 pix|
000003e0  65 6c 73 2e 20 54 68 61  74 27 73 20 39 20 74 69  |els. That's 9 ti|
000003f0  6d 65 73 20 74 68 65 20  69 6e 69 74 69 61 6c 0d  |mes the initial.|
00000400  63 68 61 72 61 63 74 65  72 20 73 69 7a 65 21 0d  |character size!.|
00000410  0d 54 68 65 20 6e 65 78  74 20 66 65 77 20 70 61  |.The next few pa|
00000420  67 65 73 20 6f 75 74 6c  69 6e 65 20 68 6f 77 20  |ges outline how |
00000430  74 68 65 20 70 72 6f 67  72 61 6d 20 69 73 20 6c  |the program is l|
00000440  6f 61 64 65 64 2c 20 6f  70 65 72 61 74 65 64 0d  |oaded, operated.|
00000450  61 6e 64 20 74 68 65 20  6f 74 68 65 72 20 75 6e  |and the other un|
00000460  69 71 75 65 20 66 65 61  74 75 72 65 73 20 6f 66  |ique features of|
00000470  20 74 68 69 73 20 64 65  73 69 67 6e 65 72 2e 0d  | this designer..|
00000480  0d 4c 6f 61 64 69 6e 67  20 49 6e 73 74 72 75 63  |.Loading Instruc|
00000490  74 69 6f 6e 73 0d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |tions.----------|
000004a0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 0d 0d 54 68 65 20  |----------..The |
000004b0  64 65 73 69 67 6e 65 72  20 77 69 6c 6c 20 77 6f  |designer will wo|
000004c0  72 6b 20 6f 6e 20 61 20  42 42 43 20 27 42 27 20  |rk on a BBC 'B' |
000004d0  6f 72 20 68 69 67 68 65  72 20 77 69 74 68 20 44  |or higher with D|
000004e0  46 53 20 66 69 74 74 65  64 2e 0d 54 68 65 20 70  |FS fitted..The p|
000004f0  72 6f 67 72 61 6d 20 63  61 6e 20 65 61 73 69 6c  |rogram can easil|
00000500  79 20 62 65 20 6d 6f 64  69 66 69 65 64 20 74 6f  |y be modified to|
00000510  20 77 6f 72 6b 20 6f 6e  20 41 44 46 53 20 61 6e  | work on ADFS an|
00000520  64 20 54 41 50 45 20 62  79 0d 6d 61 6b 69 6e 67  |d TAPE by.making|
00000530  20 6d 69 6e 6f 72 20 63  68 61 6e 67 65 73 2e 0d  | minor changes..|
00000540  0d 54 6f 20 52 55 4e 20  74 68 65 20 70 72 6f 67  |.To RUN the prog|
00000550  72 61 6d 20 74 79 70 65  20 43 48 41 49 4e 22 4c  |ram type CHAIN"L|
00000560  6f 61 64 65 72 22 2e 0d  0d 54 68 65 20 54 69 74  |oader"...The Tit|
00000570  6c 65 20 53 63 72 65 65  6e 20 77 69 6c 6c 20 74  |le Screen will t|
00000580  68 65 6e 20 6c 6f 61 64  20 61 6e 64 20 74 68 65  |hen load and the|
00000590  20 75 73 65 72 20 77 69  6c 6c 20 62 65 20 61 64  | user will be ad|
000005a0  76 69 73 65 64 20 74 6f  0d 70 72 65 73 73 20 74  |vised to.press t|
000005b0  68 65 20 53 70 61 63 65  2d 42 61 72 2e 20 41 66  |he Space-Bar. Af|
000005c0  74 65 72 20 74 68 69 73  20 74 68 65 20 6d 61 69  |ter this the mai|
000005d0  6e 20 70 72 6f 67 72 61  6d 20 77 69 6c 6c 20 6c  |n program will l|
000005e0  6f 61 64 2e 0d 49 66 20  74 68 65 20 44 46 53 20  |oad..If the DFS |
000005f0  75 73 65 73 20 6d 65 6d  6f 72 79 20 61 62 6f 76  |uses memory abov|
00000600  65 20 26 45 30 30 20 74  68 69 73 20 77 69 6c 6c  |e &E00 this will|
00000610  20 62 65 20 72 65 63 6c  61 69 6d 65 64 20 61 6e  | be reclaimed an|
00000620  64 20 74 68 65 0d 44 46  53 20 64 69 73 61 62 6c  |d the.DFS disabl|
00000630  65 64 2e 0d 0d 44 65 73  69 67 6e 69 6e 67 20 41  |ed...Designing A|
00000640  20 43 68 61 72 61 63 74  65 72 0d 2d 2d 2d 2d 2d  | Character.-----|
00000650  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
00000660  0d 0d 57 68 65 6e 65 76  65 72 20 79 6f 75 20 65  |..Whenever you e|
00000670  6e 74 65 72 20 74 68 65  20 6d 61 69 6e 20 70 72  |nter the main pr|
00000680  6f 67 72 61 6d 20 79 6f  75 20 77 69 6c 6c 20 62  |ogram you will b|
00000690  65 20 61 73 6b 65 64 20  68 6f 77 20 6d 61 6e 79  |e asked how many|
000006a0  0d 63 68 61 72 61 63 74  65 72 73 20 79 6f 75 20  |.characters you |
000006b0  77 69 73 68 20 74 6f 20  64 65 66 69 6e 65 20 61  |wish to define a|
000006c0  74 20 61 20 74 69 6d 65  2e 20 54 68 69 73 20 63  |t a time. This c|
000006d0  61 6e 20 62 65 20 61 6e  79 74 68 69 6e 67 0d 66  |an be anything.f|
000006e0  72 6f 6d 20 31 20 74 6f  20 39 2e 20 0d 0d 4f 6e  |rom 1 to 9. ..On|
000006f0  63 65 20 79 6f 75 20 72  65 70 6c 79 20 61 20 6c  |ce you reply a l|
00000700  61 72 67 65 20 27 62 6c  6f 77 6e 2d 75 70 27 20  |arge 'blown-up' |
00000710  67 72 69 64 20 73 68 6f  77 69 6e 67 20 79 6f 75  |grid showing you|
00000720  72 20 63 68 61 72 61 63  74 65 72 73 0d 77 69 6c  |r characters.wil|
00000730  6c 20 62 65 20 64 72 61  77 6e 20 69 6e 20 74 68  |l be drawn in th|
00000740  65 20 63 65 6e 74 72 65  20 6f 66 20 74 68 65 20  |e centre of the |
00000750  73 63 72 65 65 6e 2e 20  41 20 73 6d 61 6c 6c 65  |screen. A smalle|
00000760  72 20 72 65 63 74 61 6e  67 6c 65 0d 72 65 70 72  |r rectangle.repr|
00000770  65 73 65 6e 74 69 6e 67  20 74 68 65 20 61 63 74  |esenting the act|
00000780  75 61 6c 20 73 69 7a 65  20 6f 66 20 79 6f 75 72  |ual size of your|
00000790  20 63 68 61 72 61 63 74  65 72 20 77 69 6c 6c 20  | character will |
000007a0  61 6c 73 6f 20 62 65 20  64 72 61 77 6e 0d 74 6f  |also be drawn.to|
000007b0  20 74 68 65 20 72 69 67  68 74 20 6f 66 20 74 68  | the right of th|
000007c0  65 20 73 63 72 65 65 6e  2e 20 41 6e 79 20 63 68  |e screen. Any ch|
000007d0  61 6e 67 65 73 20 79 6f  75 20 6d 61 6b 65 20 74  |anges you make t|
000007e0  6f 20 74 68 65 20 6c 61  72 67 65 0d 67 72 69 64  |o the large.grid|
000007f0  20 77 69 6c 6c 20 62 65  20 73 68 6f 77 6e 20 68  | will be shown h|
00000800  65 72 65 20 74 68 65 72  65 66 6f 72 65 20 61 6c  |ere therefore al|
00000810  6c 6f 77 69 6e 67 20 79  6f 75 20 74 6f 20 73 65  |lowing you to se|
00000820  65 20 77 68 61 74 0d 65  78 61 63 74 6c 79 20 79  |e what.exactly y|
00000830  6f 75 72 20 63 68 61 72  61 63 74 65 72 20 77 69  |our character wi|
00000840  6c 6c 20 6c 6f 6f 6b 20  6c 69 6b 65 2e 0d 0d 4f  |ll look like...O|
00000850  6e 20 74 68 65 20 62 6f  74 74 6f 6d 2d 6c 65 66  |n the bottom-lef|
00000860  74 2d 68 61 6e 64 20 63  6f 72 6e 65 72 20 6f 66  |t-hand corner of|
00000870  20 74 68 65 20 6c 61 72  67 65 20 67 72 69 64 20  | the large grid |
00000880  79 6f 75 20 77 69 6c 6c  20 73 65 65 20 61 0d 27  |you will see a.'|
00000890  2a 27 2e 20 54 68 69 73  20 72 65 70 72 65 73 65  |*'. This represe|
000008a0  6e 74 73 20 79 6f 75 72  20 63 75 72 73 6f 72 20  |nts your cursor |
000008b0  77 68 69 63 68 20 79 6f  75 20 63 61 6e 20 63 6f  |which you can co|
000008c0  6e 74 72 6f 6c 20 62 79  20 74 68 65 20 34 0d 63  |ntrol by the 4.c|
000008d0  75 72 73 6f 72 20 6b 65  79 73 2e 20 54 68 65 20  |ursor keys. The |
000008e0  3c 53 70 61 63 65 2d 42  61 72 3e 20 61 63 74 73  |<Space-Bar> acts|
000008f0  20 61 73 20 61 20 74 6f  67 67 6c 65 20 61 6c 6c  | as a toggle all|
00000900  6f 77 69 6e 67 20 79 6f  75 20 74 6f 0d 63 68 61  |owing you to.cha|
00000910  6e 67 65 20 74 68 65 20  63 6f 6c 6f 75 72 20 6f  |nge the colour o|
00000920  66 20 74 68 65 20 73 71  75 61 72 65 2e 0d 20 0d  |f the square.. .|
00000930  20 42 6c 75 65 20 3d 20  4f 66 66 20 0d 20 57 68  | Blue = Off . Wh|
00000940  69 74 65 20 3d 20 4f 6e  0d 0d 59 6f 75 20 77 69  |ite = On..You wi|
00000950  6c 6c 20 6e 6f 74 69 63  65 20 61 6e 79 20 63 68  |ll notice any ch|
00000960  61 6e 67 65 73 20 79 6f  75 20 6d 61 6b 65 20 6f  |anges you make o|
00000970  6e 20 74 68 65 20 73 6d  61 6c 6c 65 72 20 72 65  |n the smaller re|
00000980  63 74 61 6e 67 6c 65 20  74 6f 0d 74 68 65 20 72  |ctangle to.the r|
00000990  69 67 68 74 2e 0d 0d 59  6f 75 20 77 69 6c 6c 20  |ight...You will |
000009a0  61 6c 73 6f 20 6e 6f 74  69 63 65 20 74 68 65 20  |also notice the |
000009b0  6c 65 74 74 65 72 73 20  41 2c 42 20 61 6e 64 20  |letters A,B and |
000009c0  43 20 61 6c 6f 6e 67 20  74 68 65 20 74 6f 70 20  |C along the top |
000009d0  6f 66 20 74 68 65 0d 67  72 69 64 20 61 6e 64 20  |of the.grid and |
000009e0  74 68 65 20 6e 75 6d 62  65 72 73 20 31 2c 32 20  |the numbers 1,2 |
000009f0  61 6e 64 20 33 20 64 6f  77 6e 20 74 68 65 20 6c  |and 3 down the l|
00000a00  65 66 74 2e 20 54 68 69  73 20 61 6c 6c 6f 77 73  |eft. This allows|
00000a10  20 79 6f 75 20 74 6f 0d  73 65 65 20 77 68 61 74  | you to.see what|
00000a20  20 64 61 74 61 20 72 65  66 65 72 73 20 74 6f 20  | data refers to |
00000a30  77 68 69 63 68 20 63 68  61 72 61 63 74 65 72 2e  |which character.|
00000a40  0d 0d 43 61 6c 63 75 6c  61 74 69 6e 67 20 54 68  |..Calculating Th|
00000a50  65 20 56 61 6c 75 65 73  0d 2d 2d 2d 2d 2d 2d 2d  |e Values.-------|
00000a60  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 20  |--------------- |
00000a70  0d 0d 4f 6e 63 65 20 79  6f 75 20 68 61 76 65 20  |..Once you have |
00000a80  66 69 6e 69 73 68 65 64  20 64 65 73 69 67 6e 69  |finished designi|
00000a90  6e 67 20 79 6f 75 72 20  63 68 61 72 61 63 74 65  |ng your characte|
00000aa0  72 20 79 6f 75 20 73 68  6f 75 6c 64 20 70 72 65  |r you should pre|
00000ab0  73 73 0d 3c 52 65 74 75  72 6e 3e 2e 20 54 68 65  |ss.<Return>. The|
00000ac0  20 63 6f 6d 70 75 74 65  72 20 77 69 6c 6c 20 6e  | computer will n|
00000ad0  6f 77 20 73 74 61 72 74  20 74 6f 20 63 61 6c 63  |ow start to calc|
00000ae0  75 6c 61 74 65 20 74 68  65 20 6e 65 63 65 73 73  |ulate the necess|
00000af0  61 72 79 0d 76 61 6c 75  65 73 20 72 65 71 75 69  |ary.values requi|
00000b00  72 65 64 20 74 6f 20 63  72 65 61 74 65 20 79 6f  |red to create yo|
00000b10  75 72 20 63 68 61 72 61  63 74 65 72 2e 0d 0d 57  |ur character...W|
00000b20  68 65 6e 65 76 65 72 20  74 68 65 20 76 61 6c 75  |henever the valu|
00000b30  65 73 20 68 61 76 65 20  62 65 65 6e 20 63 61 6c  |es have been cal|
00000b40  63 75 6c 61 74 65 64 20  79 6f 75 20 77 69 6c 6c  |culated you will|
00000b50  20 62 65 20 61 73 6b 65  64 20 69 66 20 79 6f 75  | be asked if you|
00000b60  0d 77 61 6e 74 20 74 68  65 6d 20 70 72 69 6e 74  |.want them print|
00000b70  65 64 20 6f 6e 20 70 61  70 65 72 2e 20 49 66 20  |ed on paper. If |
00000b80  79 6f 75 20 64 6f 20 70  6c 65 61 73 65 20 65 6e  |you do please en|
00000b90  73 75 72 65 20 74 68 61  74 20 74 68 65 0d 70 72  |sure that the.pr|
00000ba0  69 6e 74 65 72 20 69 73  20 63 6f 6e 6e 65 63 74  |inter is connect|
00000bb0  65 64 20 61 6e 64 20 69  73 20 6f 6e 2d 6c 69 6e  |ed and is on-lin|
00000bc0  65 2e 0d 0d 55 73 65 72  73 20 6f 66 20 74 68 65  |e...Users of the|
00000bd0  20 42 42 43 20 4d 61 73  74 65 72 20 77 69 6c 6c  | BBC Master will|
00000be0  20 74 68 65 6d 20 62 65  20 61 73 6b 65 64 20 77  | them be asked w|
00000bf0  6f 75 6c 64 20 74 68 65  79 20 6c 69 6b 65 20 74  |ould they like t|
00000c00  68 65 0d 76 61 6c 75 65  73 20 74 6f 20 62 65 20  |he.values to be |
00000c10  73 65 6e 74 20 74 6f 20  61 20 66 69 6c 65 2e 20  |sent to a file. |
00000c20  49 66 20 73 6f 20 70 6c  65 61 73 65 20 63 6f 6e  |If so please con|
00000c30  73 75 6c 74 20 74 68 65  20 73 65 63 74 69 6f 6e  |sult the section|
00000c40  0d 62 65 6c 6f 77 20 6f  6e 20 73 65 6e 64 69 6e  |.below on sendin|
00000c50  67 20 64 61 74 61 20 74  6f 20 66 69 6c 65 2e 0d  |g data to file..|
00000c60  0d 49 66 20 74 68 65 20  75 73 65 72 20 68 61 73  |.If the user has|
00000c70  20 61 20 42 42 43 20 27  42 27 20 61 6e 64 20 68  | a BBC 'B' and h|
00000c80  61 73 20 6e 6f 20 70 72  69 6e 74 65 72 20 68 65  |as no printer he|
00000c90  20 77 69 6c 6c 20 68 61  76 65 20 74 6f 20 63 6f  | will have to co|
00000ca0  70 79 0d 74 68 65 20 76  61 6c 75 65 73 20 64 6f  |py.the values do|
00000cb0  77 6e 20 62 79 20 68 61  6e 64 20 61 6e 64 20 74  |wn by hand and t|
00000cc0  68 65 6e 20 72 65 74 79  70 65 20 74 68 65 6d 20  |hen retype them |
00000cd0  69 6e 74 6f 20 74 68 65  20 63 6f 6d 70 75 74 65  |into the compute|
00000ce0  72 2e 0d 54 68 69 73 20  69 73 20 62 65 63 61 75  |r..This is becau|
00000cf0  73 65 20 74 68 65 20 61  72 65 61 20 6f 66 20 6d  |se the area of m|
00000d00  65 6d 6f 72 79 20 75 73  65 64 20 62 79 20 74 68  |emory used by th|
00000d10  65 20 44 46 53 20 69 73  20 6e 65 65 64 65 64 20  |e DFS is needed |
00000d20  74 6f 0d 73 74 6f 72 65  20 74 68 65 20 64 61 74  |to.store the dat|
00000d30  61 20 66 6f 72 20 74 68  65 20 70 72 6f 67 72 61  |a for the progra|
00000d40  6d 2e 0d 0d 59 6f 75 20  77 69 6c 6c 20 62 65 20  |m...You will be |
00000d50  70 72 6f 6d 70 74 65 64  20 74 6f 20 70 72 65 73  |prompted to pres|
00000d60  73 20 74 68 65 20 3c 53  70 61 63 65 2d 42 61 72  |s the <Space-Bar|
00000d70  3e 20 61 6e 64 20 74 68  65 6e 20 61 73 6b 65 64  |> and then asked|
00000d80  20 69 66 0d 79 6f 75 20  77 6f 75 6c 64 20 6c 69  | if.you would li|
00000d90  6b 65 20 74 6f 20 64 65  66 69 6e 65 20 61 6e 6f  |ke to define ano|
00000da0  74 68 65 72 20 63 68 61  72 61 63 74 65 72 2e 20  |ther character. |
00000db0  49 66 20 6e 6f 74 20 74  68 65 20 70 72 6f 67 72  |If not the progr|
00000dc0  61 6d 0d 77 69 6c 6c 20  65 6e 64 20 77 69 74 68  |am.will end with|
00000dd0  20 50 41 47 45 20 6e 6f  77 20 73 65 74 20 61 74  | PAGE now set at|
00000de0  20 26 45 30 30 2e 0d 0d  20 2a 2a 20 4e 4f 54 45  | &E00... ** NOTE|
00000df0  20 2a 2a 20 50 6c 65 61  73 65 20 53 65 65 20 4c  | ** Please See L|
00000e00  69 73 74 69 6e 67 20 42  65 6c 6f 77 20 54 6f 20  |isting Below To |
00000e10  52 65 61 64 20 49 6e 20  44 61 74 61 20 0d 0d 53  |Read In Data ..S|
00000e20  65 6e 64 20 44 61 74 61  20 54 6f 20 46 69 6c 65  |end Data To File|
00000e30  0d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |.---------------|
00000e40  2d 2d 0d 0d 54 68 69 73  20 6f 70 74 69 6f 6e 20  |--..This option |
00000e50  69 73 20 61 76 61 69 6c  61 62 6c 65 20 74 6f 20  |is available to |
00000e60  75 73 65 72 73 20 6f 66  20 74 68 65 20 42 42 43  |users of the BBC|
00000e70  20 4d 61 73 74 65 72 20  77 68 69 63 68 20 68 61  | Master which ha|
00000e80  73 20 61 0d 44 46 53 20  6e 6f 74 20 6f 63 63 75  |s a.DFS not occu|
00000e90  70 79 69 6e 67 20 6d 65  6d 6f 72 79 20 6c 6f 63  |pying memory loc|
00000ea0  61 74 69 6f 6e 73 20 61  62 6f 76 65 20 26 45 30  |ations above &E0|
00000eb0  30 2e 0d 0d 54 68 69 73  20 77 69 6c 6c 20 73 65  |0...This will se|
00000ec0  6e 64 20 74 68 65 20 76  61 6c 75 65 73 20 63 61  |nd the values ca|
00000ed0  6c 63 75 6c 61 74 65 64  20 74 6f 20 61 6e 20 41  |lculated to an A|
00000ee0  73 63 69 69 20 66 69 6c  65 20 63 61 6c 6c 65 64  |scii file called|
00000ef0  0d 27 43 2f 44 61 74 61  27 20 77 68 69 63 68 20  |.'C/Data' which |
00000f00  63 61 6e 20 62 65 20 76  69 65 77 65 64 20 62 79  |can be viewed by|
00000f10  20 74 79 70 69 6e 67 20  2a 50 52 49 4e 54 20 43  | typing *PRINT C|
00000f20  2f 44 61 74 61 0d 0d 54  68 65 20 66 69 6c 65 20  |/Data..The file |
00000f30  69 73 20 69 6e 63 72 65  61 73 65 64 20 65 76 65  |is increased eve|
00000f40  72 79 74 69 6d 65 20 61  20 6e 65 77 20 63 68 61  |rytime a new cha|
00000f50  72 61 63 74 65 72 20 69  73 20 73 65 6e 74 20 74  |racter is sent t|
00000f60  6f 20 69 74 2e 20 53 6f  0d 69 74 20 69 73 20 69  |o it. So.it is i|
00000f70  6d 70 6f 72 74 61 6e 74  20 74 68 61 74 20 27 43  |mportant that 'C|
00000f80  2f 44 61 74 61 27 20 69  73 20 74 68 65 20 6c 61  |/Data' is the la|
00000f90  73 74 20 66 69 6c 65 20  6f 6e 20 74 68 65 20 44  |st file on the D|
00000fa0  69 73 63 2e 0d 0d 54 68  65 20 66 69 6c 65 20 63  |isc...The file c|
00000fb0  61 6e 20 62 65 20 64 65  6c 65 74 65 64 20 61 74  |an be deleted at|
00000fc0  20 61 6e 79 74 69 6d 65  20 61 73 20 74 68 65 20  | anytime as the |
00000fd0  27 4c 6f 61 64 65 72 27  20 70 72 6f 67 72 61 6d  |'Loader' program|
00000fe0  20 63 68 65 63 6b 73 0d  65 61 63 68 20 74 69 6d  | checks.each tim|
00000ff0  65 20 69 74 20 69 73 20  72 75 6e 20 74 6f 20 73  |e it is run to s|
00001000  65 65 20 69 66 20 43 2f  44 61 74 61 20 69 73 20  |ee if C/Data is |
00001010  6f 6e 20 74 68 65 20 44  69 73 63 2e 20 49 66 20  |on the Disc. If |
00001020  6e 6f 74 20 61 20 6e 65  77 0d 66 69 6c 65 20 69  |not a new.file i|
00001030  73 20 63 72 65 61 74 65  64 2e 0d 0d 54 68 65 20  |s created...The |
00001040  63 6f 6d 6d 61 6e 64 20  2a 45 58 45 43 20 43 2f  |command *EXEC C/|
00001050  44 61 74 61 20 63 61 6e  20 61 6c 73 6f 20 62 65  |Data can also be|
00001060  20 74 79 70 65 64 2e 20  54 68 69 73 20 77 69 6c  | typed. This wil|
00001070  6c 20 63 72 65 61 74 65  20 61 0d 62 61 73 69 63  |l create a.basic|
00001080  20 70 72 6f 67 72 61 6d  20 63 6f 6e 74 61 69 6e  | program contain|
00001090  69 6e 67 20 74 68 65 20  44 61 74 61 20 6e 65 65  |ing the Data nee|
000010a0  64 65 64 20 74 6f 20 63  72 65 61 74 65 20 74 68  |ded to create th|
000010b0  65 20 75 73 65 72 0d 64  65 66 69 6e 65 64 20 63  |e user.defined c|
000010c0  68 61 72 61 63 74 65 72  73 2e 20 54 68 69 73 20  |haracters. This |
000010d0  70 72 6f 67 72 61 6d 20  77 69 6c 6c 20 62 65 20  |program will be |
000010e0  73 69 6d 69 6c 61 72 20  74 6f 20 74 68 65 0d 66  |similar to the.f|
000010f0  6f 6c 6c 6f 77 69 6e 67  3a 0d 20 20 20 20 20 20  |ollowing:.      |
00001100  20 20 20 20 0d 20 20 20  20 20 20 20 20 20 31 30  |    .         10|
00001110  52 45 4d 20 56 61 6c 75  65 73 20 46 6f 72 20 55  |REM Values For U|
00001120  73 65 72 20 44 65 66 69  6e 65 64 20 43 68 61 72  |ser Defined Char|
00001130  61 63 74 65 72 73 0d 20  20 20 20 20 20 20 20 20  |acters.         |
00001140  32 30 52 45 4d 20 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |20REM ==========|
00001150  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00001160  3d 3d 3d 3d 3d 3d 3d 3d  0d 20 20 20 20 20 20 20  |========.       |
00001170  20 20 34 30 52 45 4d 20  43 68 61 72 61 63 74 65  |  40REM Characte|
00001180  72 20 41 31 0d 20 20 20  20 20 20 20 20 20 35 30  |r A1.         50|
00001190  52 45 4d 20 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |REM ============|
000011a0  0d 20 20 20 20 20 20 20  20 20 37 30 44 41 54 41  |.         70DATA|
000011b0  20 30 2c 30 2c 30 2c 30  2c 30 2c 30 2c 30 2c 30  | 0,0,0,0,0,0,0,0|
000011c0  0d 20 20 20 20 20 20 20  20 20 39 30 52 45 4d 20  |.         90REM |
000011d0  43 68 61 72 61 63 74 65  72 20 41 32 0d 20 20 20  |Character A2.   |
000011e0  20 20 20 20 20 31 30 30  52 45 4d 20 3d 3d 3d 3d  |     100REM ====|
000011f0  3d 3d 3d 3d 3d 3d 3d 3d  0d 20 20 20 20 20 20 20  |========.       |
00001200  20 31 32 30 44 41 54 41  20 30 2c 30 2c 30 2c 30  | 120DATA 0,0,0,0|
00001210  2c 30 2c 30 2c 30 2c 30  0d 20 20 20 20 20 20 20  |,0,0,0,0.       |
00001220  20 31 34 30 52 45 4d 20  43 68 61 72 61 63 74 65  | 140REM Characte|
00001230  72 20 42 31 0d 20 20 20  20 20 20 20 20 31 35 30  |r B1.        150|
00001240  52 45 4d 20 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |REM ============|
00001250  0d 20 20 20 20 20 20 20  20 31 37 30 44 41 54 41  |.        170DATA|
00001260  20 30 2c 30 2c 30 2c 30  2c 30 2c 30 2c 30 2c 30  | 0,0,0,0,0,0,0,0|
00001270  0d 20 20 20 20 20 20 20  20 31 39 30 52 45 4d 20  |.        190REM |
00001280  43 68 61 72 61 63 74 65  72 20 42 32 0d 20 20 20  |Character B2.   |
00001290  20 20 20 20 20 32 30 30  52 45 4d 20 3d 3d 3d 3d  |     200REM ====|
000012a0  3d 3d 3d 3d 3d 3d 3d 3d  0d 20 20 20 20 20 20 20  |========.       |
000012b0  20 32 32 30 44 41 54 41  20 30 2c 30 2c 30 2c 30  | 220DATA 0,0,0,0|
000012c0  2c 30 2c 30 2c 30 2c 30  0d 0d 54 68 65 20 52 45  |,0,0,0,0..The RE|
000012d0  4d 20 6c 69 6e 65 73 20  63 61 6e 20 62 65 20 64  |M lines can be d|
000012e0  65 6c 65 74 65 64 20 69  66 20 72 65 71 75 69 72  |eleted if requir|
000012f0  65 64 20 74 6f 20 73 61  76 65 20 6d 65 6d 6f 72  |ed to save memor|
00001300  79 20 61 6e 64 20 74 68  65 6e 0d 74 68 65 20 70  |y and then.the p|
00001310  72 6f 67 72 61 6d 20 63  61 6e 20 62 65 20 27 53  |rogram can be 'S|
00001320  50 4f 4f 4c 65 64 27 20  61 6e 64 20 6d 65 72 67  |POOLed' and merg|
00001330  65 64 20 77 69 74 68 20  61 20 6c 61 72 67 65 72  |ed with a larger|
00001340  20 70 72 6f 67 72 61 6d  2e 0d 0d 41 20 70 72 6f  | program...A pro|
00001350  67 72 61 6d 20 66 6f 72  20 72 65 61 64 69 6e 67  |gram for reading|
00001360  20 74 68 65 20 64 61 74  61 20 69 73 20 6c 69 73  | the data is lis|
00001370  74 65 64 20 6e 65 78 74  2e 0d 0d 20 20 20 20 20  |ted next...     |
00001380  20 20 20 20 31 30 20 46  4f 52 20 4b 3d 31 32 38  |    10 FOR K=128|
00001390  20 54 4f 20 31 32 38 2b  78 3a 52 45 4d 20 78 3d  | TO 128+x:REM x=|
000013a0  4e 6f 2e 20 6f 66 20 43  68 61 72 61 63 74 65 72  |No. of Character|
000013b0  73 2e 0d 20 20 20 20 20  20 20 20 20 32 30 20 20  |s..         20  |
000013c0  20 56 44 55 20 32 33 2c  4b 0d 20 20 20 20 20 20  | VDU 23,K.      |
000013d0  20 20 20 33 30 20 20 20  46 4f 52 20 4c 3d 31 20  |   30   FOR L=1 |
000013e0  54 4f 20 38 0d 20 20 20  20 20 20 20 20 20 34 30  |TO 8.         40|
000013f0  20 20 20 20 20 52 45 41  44 20 6e 0d 20 20 20 20  |     READ n.    |
00001400  20 20 20 20 20 35 30 20  20 20 20 20 56 44 55 20  |     50     VDU |
00001410  6e 0d 20 20 20 20 20 20  20 20 20 36 30 20 20 20  |n.         60   |
00001420  4e 45 58 54 0d 20 20 20  20 20 20 20 20 20 37 30  |NEXT.         70|
00001430  20 4e 45 58 54 0d 0d 2a  2a 20 4e 4f 54 45 20 2a  | NEXT..** NOTE *|
00001440  2a 20 31 32 38 20 6d 61  79 20 62 65 20 63 68 61  |* 128 may be cha|
00001450  6e 67 65 64 20 74 6f 20  77 68 61 74 65 76 65 72  |nged to whatever|
00001460  20 63 68 61 72 61 63 74  65 72 20 74 68 65 20 75  | character the u|
00001470  73 65 72 0d 77 61 6e 74  73 20 74 6f 20 64 65 66  |ser.wants to def|
00001480  69 6e 65 20 66 69 72 73  74 2e 0d                 |ine first..|
0000148b
28-04-89/DText.m0
28-04-89/DText.m1
28-04-89/DText.m2
28-04-89/DText.m4
28-04-89/DText.m5