Mitsubishi QD51 Programming Manual page 252

Logic controller
Hide thumbs Also See for QD51:
Table of Contents

Advertisement

11 INSTRUCTIONS AND FUNCTIONS
GOTO
Instruction
• Moves the program flow to the specified line number unconditionally.
GOTO
Syntax
line number
GOTO 100
Examples
• The GOTO instruction moves the program flow to the specified line number
Description
unconditionally.
• The execution moves to the line specified by <line number>.
• <line number> can also be specified by a label.
• An "Undefined line number" error occurs if a line that does not exist is specified for <line
number>.
Program Example
10 ' Repeats calculation until X reaches 4096
20 X=1
30 PRINT "X=";X
40 X=2*X
50 IF X=4096 THEN END
60 GOTO 30
RUN
X= 1
X= 2
X= 4
X= 8
X= 16
X= 32
X= 64
X= 128
X= 256
X= 512
X= 1024
X= 2048
OK
11 - 82
GOTO
<line number>
• • • •
• • • •
REMARK
See the FOR to NEXT, IF to THEN and IF to GOTO instructions, and Section 3.6.
Specify the jump destination line number.
Moves the execution to line number 100.
:
' Defines 1 to variable X
:
' Displays
:
' Doubles the value of X
:
' Ends if X=4096
:
' Returns to line 30
MELSEC-Q
11 - 82

Advertisement

Table of Contents
loading

This manual is also suitable for:

Ad51h-s3Qd51-r24A1sd51s

Table of Contents