hi,

Did you try ???

[code]
If B0 = 0 Then nojump
nojump:

(code to run goes here)
GOTO Jump
Else
(more code)
EndIf
Jump:

[code]

Looks obvious ... but note I'm using PBPro ...

or :

[code]
If B0 = 0 Then turnaround

Else
(more code)
EndIf

BackHome:

.
.
.
.

Turnaround:
(code to run goes here)
GOTO BackHome

[code]

This structure works with assembler ... so it should go too !!!

Alain