Level/NOR Gate: Difference between revisions

From Turing Complete
w:c:strategywiki>Henke37
(Mixed up the solution with the OR gate)
w:c:strategywiki>Henke37
(Switch to Y/N templates)
Line 8: Line 8:
! Input One !! Input Two !! Output
! Input One !! Input Two !! Output
|-
|-
| False|| False|| True
| {{No}}|| {{No}}|| {{Yes}}
|-
|-
| False|| True|| False
| {{No}}|| {{Yes}}|| {{No}}
|-
|-
| True|| False|| False
| {{Yes}}|| {{No}}|| {{No}}
|-
|-
| True|| True|| False
| {{Yes}}|| {{Yes}}|| {{No}}
|}
|}



Revision as of 21:37, 6 February 2023

This level has you create the NOR Gate.

NOR Gate Truth Table
Input One Input Two Output
No No Yes
No Yes No
Yes No No
Yes Yes No

To solve this level, place one NAND gate and put NOT gates on both of the inputs as well as a NOT gate on the output.