EOR (Ternary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<big><b>Ternary XOR</b></big>
<big><b>Ternary XOR</b></big>
[[File:EOR_GATE.png|thumb|Eor Gate Symbol]]
[[File:BCT_NEOR.png|thumb|BCT NEOR Gate]]


== Uses ==
== Uses ==
Line 9: Line 11:
== Truth Tables ==
== Truth Tables ==
=== EOR ===
=== EOR ===
[[File:EOR_GATE.png|thumb|alt=Eor Gate Symbol|Eor Gate Symbol]]
 
<div class="tt">
<div class="tt">
<table class="tt">
<table class="tt">
Line 101: Line 103:
<hr />
<hr />
=== NEOR ===
=== NEOR ===
[[File:NEOR_GATE.png|thumb|alt=Negated Eor Gate Symbol|Negated Eor Gate Symbol]]
<div class="tt">
<div class="tt">
<table class="tt">
<table class="tt">

Latest revision as of 19:01, 24 January 2025

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