EOR (Ternary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
Line 9: Line 9:
== Truth Tables ==
== Truth Tables ==
=== EOR ===
=== EOR ===
[[File:EOR.png|thumb|alt=Eor Gate Symbol|Eor Gate Symbol]]
[[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 101:
<hr />
<hr />
=== NEOR ===
=== NEOR ===
[[File:NEOR.png|thumb|alt=Negated Eor Gate Symbol|Negated Eor Gate Symbol]]
[[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">

Revision as of 20:12, 28 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 Gate Symbol
Eor Gate Symbol
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

Negated Eor Gate Symbol
Negated Eor Gate Symbol
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
+ + +