XOR (Binary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
(Created page with "== Truth Tables == <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">XOR</td> <td colspan="3" class="tce"><b>B</b></td> </tr> <tr> <td class="tt_bb">0</td> <td class="tt_bb">1</td> </tr> <tr> <td rowspan="2"><b>A</b></td> <td class="tt_br">0</td> <td>0</td> <td>1</td> </tr> <tr> <td class="tt_br">1</td> <td>1</td> <td>0</td> </tr> </table> <table class="tt"> <tr> <td class="t...")
 
No edit summary
Line 47: Line 47:
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td class="tt_bl">1</td>
<td class="tt_bl">0</td>
</tr>
</tr>
</table>
</table>
</div>
</div>

Revision as of 08:17, 8 June 2024

Truth Tables

XOR B
0 1
A 0 0 1
1 1 0
A B Y
0 0 0
0 1 1
1 0 1
1 0 0