XOR
Boolean exclusive OR between two terms.

Arguments | ||
---|---|---|
IN1 | BOOL | |
IN2 | BOOL | |
Q | BOOL | Boolean exclusive OR of both input items |
Example
(* FBD example with "XOR" operators *)

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