Level/Bigger OR Gate: Difference between revisions

From Turing Complete
(Added truth table)
Line 2: Line 2:


For this level you create a three input version of the OR Gate.
For this level you create a three input version of the OR Gate.
{| {{TruthTable}}
|+ Bigger OR Gate Truth Table
|-
! Input 1 !! Input 2 !! Input 3 !! Output
|-
| {{Off t}}|| {{Off t}}|| {{Off t}}|| {{Off t}}
|-
| {{Off t}}|| {{Off t}}|| {{On t}}|| {{On t}}
|-
| {{Off t}}|| {{On t}}|| {{Off t}}|| {{On t}}
|-
| {{Off t}}|| {{On t}}|| {{On t}}|| {{On t}}
|-
| {{On t}}|| {{Off t}}|| {{Off t}}|| {{On t}}
|-
| {{On t}}|| {{Off t}}|| {{On t}}|| {{On t}}
|-
| {{On t}}|| {{On t}}|| {{Off t}}|| {{On t}}
|-
| {{On t}}|| {{On t}}|| {{On t}}|| {{On t}}
|}


To do so just place two OR gates and hook one up to the other, connecting the rest of the inputs to the input pins.
To do so just place two OR gates and hook one up to the other, connecting the rest of the inputs to the input pins.


{{Footer Nav|game=Turing Complete|prevpage=XOR Gate|nextpage=Bigger AND Gate}}
{{Footer Nav|game=Turing Complete|prevpage=XOR Gate|nextpage=Bigger AND Gate}}

Revision as of 23:35, 1 September 2024

For this level you create a three input version of the OR Gate.

Bigger OR Gate Truth Table
Input 1 Input 2 Input 3 Output
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 1

To do so just place two OR gates and hook one up to the other, connecting the rest of the inputs to the input pins.