7.7.8.30. GEL_Go()ΒΆ

Runs to specified address or source line.

Syntax

GEL_Go();

GEL_Go( address );

GEL_Go( "source_file", line_number );

Parameters

address: is the stop address.

source_file: is the name or path to the source file. The argument must be enclosed in quotation marks.

line_number: is the line number in the source file.

Description

The GEL_Go function executes code up to a specific point in the program. The address Parameters is treated as a program-memory address. If you do not supply an address, then GEL_Go becomes equivalent to the GEL_Run GEL function.

Synchronous

Synchronous from GEL: Yes, only if location is given

Completely synchronous: No

Example

GEL_Go();
GEL_Go(main);

Related Topics

GEL_Run

GEL_Halt