11 - 82 11 - 82
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
GOTO
Instruction
GOTO
• Moves the program flow to the specified line number unconditionally.
GOTO <line number>
Syntax
line number
• • • •
Specify the jump destination line number.
Examples
GOTO 100
• • • •
Moves the execution to line number 100.
Description
• The GOTO instruction moves the program flow to the specified line number
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
:
' Defines 1 to variable X
30 PRINT "X=";X
:
' Displays
40 X=2*X
:
' Doubles the value of X
50 IF X=4096 THEN END
:
' Ends if X=4096
60 GOTO 30
:
' Returns to line 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
REMARK
See the FOR to NEXT, IF to THEN and IF to GOTO instructions, and Section 3.6.
Содержание 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...