6.1.8 New Macro Functions
1. Format: GOTO Pxx
This instruction can jump directly to the specified line number Pxx execution in the program.
example:
GOTO P200
…
…
…
N200
You can specify that the program jumps directly to line 200 to execute.
2. Macro instruction index function
Format: #(#xx)=yy
example:
#4 = 0
#(#4) = 1
Execution result #0 = 1.