OR
Boolean OR of 2 to 32 Boolean variables.

Arguments | ||
---|---|---|
(inputs) | BOOL | From 2 to 32 inputs. |
output | BOOL | Boolean OR of the input variables. |
Example
(* FBD example with "OR" Operators *)

(* ST equivalence: *)
bo10 := bi101 OR NOT (bi102);
bo5 := (bi51 OR bi52) OR bi53;
Provide Feedback