OR (Binary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 25: Line 25:


<table class="tt">
<table class="tt">
<tr>
<td colspan="3">OR</td>
</tr>
<tr>
<tr>
<td class="tt_bb"><b>A</b></td>
<td class="tt_bb"><b>A</b></td>
Line 79: Line 82:


<table class="tt">
<table class="tt">
<tr>
<td colspan="3">NOR</td>
</tr>
<tr>
<tr>
<td class="tt_bb"><b>A</b></td>
<td class="tt_bb"><b>A</b></td>
Line 106: Line 112:
</table>
</table>
</div>
</div>
[[Category:Binary]]
[[Category:Logic_Gates]]

Latest revision as of 17:28, 26 June 2024

Truth Tables

OR

OR B
0 1
A 0 0 1
1 1 1
OR
A B Y
0 0 0
0 1 1
1 0 1
1 1 1

NOR

NOR B
0 1
A 0 1 0
1 0 0
NOR
A B Y
0 0 1
0 1 0
1 0 0
1 1 0