EOR (Ternary Gate)

From T729 Balanced Ternary Computer
Revision as of 19:01, 24 January 2025 by MrDyne (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Ternary XOR

Eor Gate Symbol
BCT NEOR Gate

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
+ + +