RTR logo

R. T. RUSSELL

BBC BASIC (Z80) Manual



Error Messages and Codes

Annex C to
BBC BASIC (Z80)

Summary

Trappable - Program

NoError NoError
1Out of range 2*
3* 4Mistake
5Missing , 6Type mismatch
7No FN 8*
9Missing " 10Bad DIM
11DIM space 12Not LOCAL
13No PROC 14Array
15Subscript 16Syntax error
17Escape 18Division by zero
19String too long 20Too big
21-ve root 22Log range
23Accuracy lost 24Exp range
25* 26No such variable
27Missing ) 28Bad HEX
29No such FN/PROC    30Bad call
31Arguments 32No FOR
33Can't match FOR 34FOR variable
35* 36No TO
37* 38No GOSUB
39ON syntax 40ON range
41No such line 42Out of DATA
43No REPEAT 44  *
45  Missing #   
* Not applicable to BBC BASIC (Z80)

Trappable - Operating System

NoError NoError
190Directory full        192Too many open files
196File exists 198Disk full
200Close error 204Bad name
214File not found 222Channel
253 Bad string 254 Bad command
255 CP/M error

Untrappable - Error Code 0

No room RENUMBER space
Silly LINE space
Sorry Bad program
Failed at nnn  
Strictly speaking 'Bad program' does not have an error code. It leaves ERR and ERL unchanged.


Details

BBC BASIC (Z80)'s error messages and codes are briefly explained below in alphabetical order.

Accuracy lost

23

Before BBC BASIC (Z80) calculates trigonometric functions (sin, cos, etc) of very large angles the angles are reduced to +/- PI radians. The larger the angle, the greater the inaccuracy of the reduction, and hence the result. When this inaccuracy becomes unacceptable, BBC BASIC (Z80) will issue an 'Accuracy lost' error message.

Arguments

31

This error indicates that too many or too few arguments have been passed to a procedure or function or an invalid formal parameter has been used. See the sub-section on Procedures and Functions.

Array

14

This error occurs when BBC BASIC (Z80) thinks it should be accessing an array, but does not know which one.

Bad call

30

This error indicates that a procedure or function has been incorrectly called.

Bad command

254

This error occurs when a command name is not recognized as a valid BBC BASIC (Z80) command. Star commands which are unknown to BBC BASIC (Z80) are passed to CP/M-80. If the command is unrecognised by CP/M-80, an untrappable 'Bad command or file name' error occurs.

Bad DIM

10

Arrays must be positively dimensioned. In other words, the numbers within the brackets must not be negative. This error would be produced by the following example.

DIM table(20,-10)

Bad HEX

28

Hexadecimal numbers can only include the numbers 0 to 9 and A to F. If you try to form a hex number with other characters this error will occur. For example:

&OF instead of &0F

Bad name

204

This error is generated if a path name exceeds 64 characters in length.

Bad program

From time to time BBC BASIC (Z80) checks to see that the program in memory is of the correct format (See Annex E). If it is unable to follow the program from the start to the 'program end marker' it will report this untrappable error. The error can be caused by a read error, by only loading part of the program or by overwriting part of the program in some way. (Machine code programmers beware.) Without a full understanding of how a program is stored in memory, there is little you can do to recover a bad program.

Bad string

253

File names in 'star' commands may optionally be enclosed in quotes. This error will occur if the quotes are unmatched. The following example would give rise to this error.

*SAVE "GRAPHS

Can't match FOR

33

BBC BASIC (Z80) has been unable to find a FOR statement corresponding to the NEXT statement.

Channel

222

This error is generated by the disk filing system. It occurs if you try to use a channel which has not been opened, possibly because you are using the wrong channel number.

Close error

200

This error will occur if the file(s) specified cannot be closed because the disk has been changed while the file(s) were open.

DIM space

11

This error will be generated if:

Directory full

190

This error will occur if an attempt is made to create more files on the disk than the directory has capacity for.

Disk full

198

This error will occur if there is insufficient room on the disk for the data/program being written to it.

Division by zero

18

Mathematically, dividing by zero gives an infinitely large answer. The computer is unable to understand the concept of infinity (it's not alone) and this error is generated. If there is any possibility that the divisor might be zero, you should test for this condition before carrying out the division. For example:

200 IF divisor=0 THEN PROC_error ELSE...

Escape

17

This error is generated by pressing the <Esc> key. You can trap this, and other errors, by using the ON ERROR GOTO statement. You can inhibit the generation of the 'Escape' error by using *ESC OFF. The <Esc> key then returns the ASCII value of escape (&1B). *ESC ON restores the default action of the <Esc> key.

Exp range

24

The EXP function is unable to cope with powers greater than 88. If you try to use a larger power, this error will be generated.

Failed at nnn

During renumbering, BBC BASIC (Z80) tries to resolve all line numbers referred to by GOTO and GOSUB statements. Should it fail, it will generate a 'Failed at nnn' error, where nnn is the RENUMBERED line which contains the unresolved reference.

The following example:

100 REM Demonstration renumber fail program
110 GOTO 250
120 END
would renumber as:
10 REM Demonstration renumber fail program
20 GOTO 250
30 END
and generate the error message 'Failed at 20'.

File exists

196

This error will be generated if you try to rename a file and a file with the new name already exists.

File not found

214

This error will occur if you try to LOAD, *LOAD or CHAIN a file which does not exist.

FOR variable

34

The variable in a FOR...NEXT loop must be a numeric variable. If you use a constant or a string variable this error message will be generated. For example, the following statements are not legal.

20 FOR name$=1 TO 20

20 FOR 10=1 TO 20

LINE space

A program line is too long to be represented in BBC BASIC (Z80)'s internal format.

Log range

22

Logarithms for zero and negative numbers do not exist. This error message will be generated if you try to calculate the log of zero or a negative number or raise a negative number to a non-integer power.

Missing ,

5

This error message is generated if BBC BASIC (Z80) was unable to find a comma where one was expected. The following example would give rise to this error.

20 PRINT TAB(10 5)

Missing "

9

This error message is generated if BBC BASIC (Z80) was unable to find a double-quote where one was expected. The following example would give rise to this error.
10 name$="Douglas

Missing )

27

This error message is generated if BBC BASIC (Z80) was unable to find a closing bracket where one was expected. The following example would give rise to this error.
10 PRINT SQR(num

Missing #

45

This error will occur if BBC BASIC (Z80) is unable to find a hash symbol (a pound symbol on some computers) where one was expected. The following example would cause this error.
CLOSE 7

Mistake

4

This error will be generated if BBC BASIC (Z80) is unable to make any sense at all of the input line.

-ve root

21

This error message will occur if BBC BASIC (Z80) attempted to calculate the square root of a negative number. It is possible for this error to occur with ASN and ACS as well as SQR.

 90 num=-20
100 root=SQR(num)

No GOSUB

38

This error message will be generated if BBC BASIC (Z80) finds a RETURN statement without first encountering a GOSUB statement. (See the sub-section on Program Flow Control.)

No FN

7

If BBC BASIC (Z80) encounters an end of function without calling a function definition, this error message will be issued. If you forget to put multi-line function definitions out of harm's way at the end of the program you are very likely to get this error message. (See the sub-section on Procedures and Functions.)

No FOR

32

This error message indicates that BBC BASIC (Z80) has found a NEXT statement without first encountering a FOR statement.

No PROC

13

If BBC BASIC (Z80) encounters an ENDPROC without performing (calling) a procedure definition, this error message will be issued. If you forget to put multi-line procedure definitions out of harm's way at the end of the program you are very likely to get this error message. (See the sub-section on Procedures and Functions.)

No REPEAT

43

This error message indicates that BBC BASIC (Z80) has found an UNTIL statement without first encountering a REPEAT statement.

No room

This untrappable error indicates that all the computer's available memory was used up whilst a program was running. This error may occur as a result of numerous assignments to string variables, as in a string sort. See the explanation of String Variables and Garbage in the Variables sub-section for details.

No such FN/PROC

29

When BBC BASIC (Z80) encounters a name beginning with FN or PROC it expects to be able to find a corresponding function or procedure definition. This error will occur if such a definition does not exist.

No such line

41

This error will occur if BBC BASIC (Z80) tries to GOTO, GOSUB, TRACE or RESTORE to a non-existent line number.

No such variable

26

Variables are brought into existence by assigning a value to them or making them LOCAL in a function or procedure definition. This error message will be generated if you try to use a variable on the right-hand side of an assignment or access it in a PRINT statement before it has been created. As shown below, you can create variables very simply.

10 count=0
20 name$=""

No TO

36

This error message will be generated if BBC BASIC (Z80) encounters a FOR...NEXT loop with the TO part missing.

Not LOCAL

12

If you try to define a variable as LOCAL outside a procedure or function, this error message will be generated. If you forget to put multi-line function definitions out of harm's way at the end of the program you are very likely to get this error message. (See the sub-section on Procedures and Functions.)

ON range

40

This error will be generated if, in a simple ON GOTO/GOSUB/PROC statement, the control variable was less than 1 or greater than the number of entries in the ON list. These exceptions can be trapped in ON GOTO/GOSUB/PROC statements by using the ELSE option. The first example below will generate an 'ON range' error, whilst the second is correct.

10 num=4
20 ON num GOTO 100,200,300

10 num=4
20 ON num GOTO 100,200,300 ELSE 1000

ON syntax

39

This error will be reported if the ON...GOTO statement was misformed. For example, the following statement is not legal. (Refer to the keyword ON for details of legal statements.)

20 ON x TIME=0

Out of DATA

42

If your program tried to read more items of data than there were in the data list, this error will be generated. You can use RESTORE to return the data pointer to the first data statement (or to a particular line with a data statement) if you wish.

Out of range

1

This assembly language error will be reported if you tried to perform a relative jump of more than +127 or -128 bytes or you used a 16 bit port address when only an 8 bit address is allowed.

RENUMBER space

When BBC BASIC RENUMBERs a program it has to build a cross-reference table of line numbers. If there is insufficient memory to hold this table, the 'RENUMBER space' error results. In this case you can still renumber the program using the RENUMBER.COM utility program supplied.

Silly

This error message will be issued if you try to renumber a program or enter AUTO with a step size of 0. AUTO with a step size of more than 255 will work, but it will be evaluated MOD 256.

String too long

19

You will get this error message if your program tries to generate a string which is longer than 255 characters.

Subscript

15

If you try to access an element of an array less than zero or greater than the size of the array you will generate this error. Both lines 20 and 30 of the following example would give rise to this error message.

10 DIM test(10)
20 test(-4)=20
30 test(30)=10

Syntax error

16

A command was terminated incorrectly. In other words, the first part of the command was recognized, but the rest of it was meaningless or incomplete. Unlike Mistake, BBC BASIC (Z80) was able to recognise the start of the command.

Too big

20

This error will occur if a number is entered or calculated which is too big for BBC BASIC (Z80) to cope with.

Too many open files

192

This error will occur if you try to open more than seven files at any one time.

Type mismatch

6

This error indicates that a number was encountered when a string was expected and vice-versa. Don't forget that this can occur if the actual parameters and the formal parameters for a function or procedure do not correspond. (See sub-section on Procedures and Functions for details of parameter passing to functions and procedures.)

Left CONTENTS

CONTINUE Right


Best viewed with Any Browser Valid HTML 3.2!
© Doug Mounter and Richard Russell 2009