EOR (Ternary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
Line 100: Line 100:


<hr />
<hr />
=== AEOR ===
=== NEOR ===
<div class="tt">
<div class="tt">
<table class="tt">
<table class="tt">
<tr>
<tr>
<td class="tt_br tt_bb" colspan="2" rowspan="2">AEOR</td>
<td class="tt_br tt_bb" colspan="2" rowspan="2">NEOR</td>
<td colspan="3" class="tce"><b>B</b></td>
<td colspan="3" class="tce"><b>B</b></td>
</tr>
</tr>
Line 135: Line 135:
<table class="tt">
<table class="tt">
<tr>
<tr>
<td colspan="3">AEOR</td>
<td colspan="3">NEOR</td>
</tr>
</tr>
<tr>
<tr>

Revision as of 03:51, 13 September 2024

Ternary XOR

Uses

Useful as a controllable Buffer or Negate.

The negated form AEOR 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

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