Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 1.0


Metadata (Metadata Plugin)
0version
hiddentrue
1.0.0


Scroll Ignore

Button export page pdf

Version:

Metadata from
1version



Section


Column

All Branch Operations follow the same format:

QUERY, TRUE, FALSE

The first statement is the query which can be checking an input, comparing a variable, etc. The next statement is what you want the program to do if the query is true, and finally the last part is what you want the program to do if the query is false.The query can be any of the following operations. For example

V1>=V2, ?99, ?96

If V1 is greater or equal than V2 then send ?99 query else send ?96 query

 




Section


Column


Tablewidth
tablewidth800px
width2700px
width1100px


I

Input

If an input is used alone, it is not necessary to compare, as it is implied that the statement is true if the input is true

I3,W0,T0

If input three is active, wait, else do nothing and move to next line. 





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


&&

And

The And query is true if both operands are true.

I1.1 && I2.1, C2.1, W0

If inputs one and two are both active, call bank two, else wait. 





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


||

Or

This query is true if either operand is true.

I1.1 || I2.1, C2.1, W0

If either input one or two are active, call bank two, else wait. 





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


!

!

=

Not equal

This query is true if the operand is 0.

V1 != !! I1.1

If input one is active, V1 is 0. If input one is deactivated, V1 is 1.





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


>

Greater Than

This query is true if the first operand is greater than the second.

V1>V2, C2, T0

If variable one is greater than variable two, call bank 2, else do nothing. 





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


>=

Greater Than or Equal To

This query is true if the first operand is greater than or equal to the second.

V1 >= V2, C2, T0

If variable one is greater than or equal to variable two, call bank 2, else do nothing.





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


==

Equal To

This query is true if the first operand is equal to the second. 

P1 == V1, J2, T0

If position one is equal to variable one, jump to bank 2, else do nothing. 





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


<

Less Than

This query is true if the first operand is less than the second. 

V1<V2, C2, T0

If variable one is less than variable two, call bank 2, else do nothing.  





Section


Column


Tablewidth
tablewidth800px
width2700px
width1200px


<=

Less Than or Equal To

This query is true if the first operand is less than or equal to the second. 

V1<=V2, C2, T0

If variable one is less than or equal to variable two, call bank 2, else do nothing.