2.5.3. Booelean

TODO.

2.5.3.1. Instruction

target = bool.and op1 op2 [boolean::And]
Target:bool
Operator 1:bool
Operator 2:bool

Computes the logical ‘and’ of op1 and op2.

target = bool.not op1 [boolean::Not]
Target:bool
Operator 1:bool

Computes the logical ‘not’ of op1.

target = bool.or op1 op2 [boolean::Or]
Target:bool
Operator 1:bool
Operator 2:bool

Computes the logical ‘or’ of op1 and op2.