$NOBREAK

Top  Previous  Next

Action

Instruct the compiler that BREAK statements must not be compiled.

 

 

Syntax

$NOBREAK

 

 

Remarks

With the BREAK statement, you can generate a reserved opcode that is used by the simulator to pause the simulation.

When you want to compile without these opcode's you don't have to remove the BREAK statement: you can use the $NOBREAK statement to achieve the same.

 

 

See also

BREAK

 

 

Example

$nobreak

Break         ' this isn't compiled into code so the simulator will not pause

End