INC (Ternary Gate): Difference between revisions
From T729 Balanced Ternary Computer
Jump to navigationJump to search
(Created page with "<p> Increment </p> == Truth Table == <div style="text-align: center; font-family: monospace; font-size: 20px;"> <table style="display: inline-block; border-collapse: collapse;"> <tr> <td class="tct" colspan="2">INC</td> <td class="tcb">B</td> </tr> <tr> <td rowspan="3" class="tca">A</td> <td class="tcr1">-</td> <td class="tc2">0</td> </tr> <tr> <td class="tcr2">0</td> <td class="tc3">+</td> </tr> <tr> <td class="tcr3">+</td> <td class="tc1">-</t...") |
No edit summary |
||
Line 1: | Line 1: | ||
< | <big><b>Increment</b></big> | ||
Increment | |||
</ | == Uses == | ||
Increment will rotate the input up. Is used in Rotate Up operations. | |||
== Truth Table == | == Truth Table == | ||
<div | <div class="tt"> | ||
<table | <table class="tt"> | ||
<tr> | |||
<td class="tt_bb"><b>A</b></td> | |||
<td class="tt_bl tt_bb"><b>Y</b></td> | |||
</tr> | |||
<tr> | |||
< | <td class="tt_r">-</td> | ||
<td class="tt_bl tt_g">0</td> | |||
</tr> | |||
<tr> | |||
<td class="tt_g">0</td> | |||
<td class="tt_bl tt_b">+</td> | |||
</tr> | |||
<tr> | |||
<td class="tt_b">+</td> | |||
<td class="tt_bl tt_r">-</td> | |||
</tr> | |||
</table> | |||
</table> | |||
</div> | </div> |
Revision as of 17:54, 29 May 2024
Increment
Uses
Increment will rotate the input up. Is used in Rotate Up operations.
Truth Table
A | Y |
- | 0 |
0 | + |
+ | - |