EOR (Ternary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
Line 189: Line 189:
</table>
</table>
</div>
</div>
[[Category:Ternary]]
[[Category:Logic_Gates]]

Revision as of 17:31, 26 June 2024

Ternary XOR

Uses

Useful as a controllable Buffer or Negate.

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

Truth Tables

EOR

EOR B
- 0 +
A - - 0 +
0 0 0 0
+ + 0 -
EOR
A B Y
- - -
- 0 0
- + +
0 - 0
0 0 0
0 + 0
+ - +
+ 0 0
+ + -

NEOR

NEOR B
- 0 +
A - + 0 -
0 0 0 0
+ - 0 +
NEOR
A B Y
- - +
- 0 0
- + -
0 - 0
0 0 0
0 + 0
+ - -
+ 0 0
+ + +