.START

A directive specifying the beginning of the program (place of launch) for the simulator.

Syntax:

    .START expr

Example:

    .START Start    ; starting the program from the label 'Start'
    .START $A 100    ; running the program from the address $A 100

Description:

Directive .START determines where the simulator will run the program. If the program does not use the Directive .START, the simulator will accept the address provided at the beginning of the program at the first time of the .ORG directive. In the opposite way to the .ORG Directive, .START is used for forward references.