Logic Gates
From Redstonechips
(→OR) |
(nKu7qy The text is promising, will place the site to my favorites..!) |
||
Line 1: | Line 1: | ||
Use this as reference for some of the basic gates: [http://en.wikipedia.org/wiki/Logic_gate#Symbols Logic Gate Symbols] | Use this as reference for some of the basic gates: [http://en.wikipedia.org/wiki/Logic_gate#Symbols Logic Gate Symbols] | ||
- | + | nKu7qy The text is promising, will place the site to my favorites..! | |
- | + | ||
- | + | ||
==OR== | ==OR== |
Revision as of 11:03, 28 September 2011
Use this as reference for some of the basic gates: Logic Gate Symbols
nKu7qy The text is promising, will place the site to my favorites..!
Contents |
OR
This outputs high when any of the inputs are high.
XOR
This outputs high only if ALL of the inputs are different (for binary applications, only 2-inputs are possible).
NOT
This inverts the input. If input is high, output is low, and vice-versa.
By applying this logic to the previous gates, we can come up with a few more:
NAND
This outputs the opposite of an AND gate, which means that the output is high if the inputs are anything but all on.
NOR
This is the opposite the OR gate, which means the output is high only if all inputs are low.
XNOR
This is the opposite of the XOR gate, which means the output is high only if all inputs are the same.