Hello, thank you for report!
I've added information for bk*
, bt*
and bt*c
mnemonics.
Here is the quote (it will be available in-game in v4.13):
Block execution until condition met
Instructions execute the next line immediately after them (in the same tick) as soon as the condition is met.
This allows them to be used to copy the input signal that triggered continuation.
For example:
mov r1 0[virtual-signal=signal-green]
btrc r1
xmov m1 red
-
bkr
cnt[C/R]
bkg
cnt[C/R]
Block until there are at least cnt signals on red/green wires.
-
btr
type[T/R]
btg
type[T/R]
bti
type[T/R]
Block until signal type found on red/green/both_input wires.
-
btrc
reg[R]
btgc
reg[R]
btic
reg[R]
Block while reference register have same value as in red/green/both_input wires.
After red/green/input value were changed, assign new value to register and continue execution.