EOR (Ternary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
Line 3: Line 3:
== Uses ==
== Uses ==


Useful as a controllable Buffer or [[NEG Ternary Gate|Negate]].
Useful as a controllable Buffer or [[NEG (Ternary Gate)|Negate]].


The [[NEG Ternary Gate|Negated]] form "XNOR" is useful to toggle between add and subtract modes within an Adder.
The negated form "XNOR" is useful to toggle between add and subtract modes within an Adder.


== Truth Tables ==
== Truth Tables ==

Revision as of 18:02, 12 June 2024

Ternary XOR

Uses

Useful as a controllable Buffer or Negate.

The negated form "XNOR" is useful to toggle between add and subtract modes within an Adder.

Truth Tables

XOR

XOR B
- 0 +
A - - 0 +
0 0 0 0
+ + 0 -
XOR
A B Y
- - -
- 0 0
- + +
0 - 0
0 0 0
0 + 0
+ - +
+ 0 0
+ + -

NXOR

NXOR B
- 0 +
A - + 0 -
0 0 0 0
+ - 0 +
NXOR
A B Y
- - +
- 0 0
- + -
0 - 0
0 0 0
0 + 0
+ - -
+ 0 0
+ + +