EOR (Ternary Gate): Difference between revisions
From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary |
m (MrDyne moved page XOR (Ternary Gate) to EOR (Ternary Gate) without leaving a redirect) |
(No difference)
|
Revision as of 17:22, 26 June 2024
Ternary XOR
Uses
Useful as a controllable Buffer or Negate.
The negated form NXOR is useful to toggle between add and subtract modes within an Adder.
Truth Tables
XOR
XOR | B | |||
- | 0 | + | ||
A | - | - | 0 | + |
0 | 0 | 0 | 0 | |
+ | + | 0 | - |
XOR | ||
A | B | Y |
- | - | - |
- | 0 | 0 |
- | + | + |
0 | - | 0 |
0 | 0 | 0 |
0 | + | 0 |
+ | - | + |
+ | 0 | 0 |
+ | + | - |
NXOR
NXOR | B | |||
- | 0 | + | ||
A | - | + | 0 | - |
0 | 0 | 0 | 0 | |
+ | - | 0 | + |
NXOR | ||
A | B | Y |
- | - | + |
- | 0 | 0 |
- | + | - |
0 | - | 0 |
0 | 0 | 0 |
0 | + | 0 |
+ | - | - |
+ | 0 | 0 |
+ | + | + |