0054: Label not found

The compiler can't find the label anywhere in the script.

Possible solutions: update the reference to match the existing label:

jump @start // error
jump @begin // OK

:begin

Last updated