App - 14 App - 14
MELSEC-Q
APPENDIX
Error message
Code
(hexadecimal)
Meaning
Corrective action
Missing operand
22 (16
H
)
A parameter required in the
statement is not specified.
Specify the necessary parameter.
Next without FOR
1 (1
H
)
There must be a FOR instruction for
each NEXT instruction (there are too
many NEXT).
Modify the program so that FOR
and NEXT match correctly.
No RESUME
19 (13
H
)
There is no RESUME instruction in
the error handling routine and the
program execution cannot continue.
Execute the RESUME instruction.
Out of data
4 (4
H
)
The READ instruction is executed
when there is no data to read.
Specify the data using the DATA
instruction.
Out of memory
7 (7
H
)
There is not enough memory (the
program is too large or the stacks
have been used up).
Reduce the number of variables
or subroutines such as the
GOSUB instruction.
Out of string space
14 (E
H
)
There is no more space in the
memory area for storing character
strings.
Increase the memory area using
the CLEAR instruction.
Overflow
6 (6
H
)
Calculation results or input numerical
values have exceeded the allowable
range.
Modify the program so that the
calculation results do not exceed
the range.
Position not on Screen
24 (18
H
)
The specified cursor position is
outside the screen range.
Specify the position within the
allowable range in the LOCATE
instruction.
Redimensioned array
10 (A
H
)
It is attempted to redefine an array or
user function.
Do not define arrays or user
functions twice.
Rename across disks
68 (44
H
)
It is attempted to rename a file
across different drives using the
NAME instruction.
Rename the file name within the
same drive.
RESUME without error
20 (14
H
)
The RESUME instruction is specified
even though control was not
transferred to the error handling
routine.
Remove the RESUME instruction
or create an error handling
routine.
RETURN without
GOSUB
3 (3
H
)
There must be a GOSUB instruction
for each RETURN instruction (there
are too many RETURN).
Make sure that the instructions
match.
Sequential after PUT
69 (45
H
)
It is attempted to access a sequential
file after executing the PUT
instruction.
Do not try to access the random
file as if it were a sequential file.
Содержание A1SD51S
Страница 183: ...11 13 11 13 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS RUN Before swap A 0 H924 A 1 H1159 After swap A 0 H1159 A 1 H924 OK...
Страница 331: ...11 161 11 161 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CON ON OFF STOP and ZOPEN functions and Section 7 4...
Страница 557: ...11 387 11 387 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CHR SPACE and SPC functions...
Страница 629: ...11 459 11 459 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZOPEN ZSEND and ZCNTL instructions and Section 7 3 4...
Страница 645: ...11 475 11 475 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZEVENT ZSIGNAL and DEF ZEVENT instructions...