EOR (Ternary Gate): Difference between revisions

From TernaryWiki
Jump to navigationJump to search
Created page with "<big><b>Ternary XOR</b></big> thumb|Eor Gate Symbol thumb|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 === <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">EOR</td> <td colspan="3" class="tce"><b>B</b></td> </tr>..."
 
No edit summary
Line 192: Line 192:
</table>
</table>
</div>
</div>
==References==
* [https://homepage.cs.uiowa.edu/~dwjones/ternary/ The Ternary Manifesto by Douglas W. Jones]


[[Category:Ternary]]
[[Category:Ternary]]
[[Category:Logic_Gates]]
[[Category:Logic_Gates]]

Revision as of 00:43, 4 May 2025

Ternary XOR

File:EOR GATE.png
Eor Gate Symbol
File:BCT NEOR.png
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
+ + +

References