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 opcodes 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
|