Wednesday, 2025-01-22, 2:04 PM |
|
|
Welcome Guest RSS |
Statistics |
|
|
Warezy Sponsors | |
News topics |
Programming
[8]
Coding, Source-code, Tutorial, Problem Solving and more
|
Hardware
[5]
Hardware Info, Troubleshooting, Price, Performance and more
|
History
[4]
More Abou History... you must read here
|
Computer Tips
[1]
Computer Tipz
|
Internet
[1]
Internet news, tools, media, software and problem solving
|
Windows
[8]
Windows Tutorials
|
Mobile
[1]
Mobile trick, tips, tutorial, troubleshooting, hacking
|
News
[1]
News every day
|
Bloging
[0]
|
Newest
[0]
for every thing new posting
|
Games
[0]
Games sources
|
Business
[1]
Business
|
Hobby
[0]
|
Journey
[0]
|
Making Money
[0]
Making money online or offline
|
Troubleshooting
[0]
|
|
|
|
Main » 2009 » January » 8 » BOOLEAN LOGIC GATES - Part 4
BOOLEAN LOGIC GATES - Part 4 | 10:15 AM |
4.0 NEGATED GATES
=======================================
There are 2 Negated Gates, these are the NOR and NAND gates.
Basically these gates act like an OR and AND gate only there
output is the opposite.
4.1 THE NAND GATE
=======================================
The truth table of a NAND gate is as follows
A B | Q
-------+------
0 0 | 1
0 1 | 1
1 0 | 1
1 1 | 0
Notice that it is the opposite of an AND gate.
0 & 0 = 0, ~0 = 1
To wrap this up a bit better we use brackets ()
~(0 & 0) = 1
~(0 & 1) = 1
~(1 & 0) = 1
~(1 & 1) = 0
Now the result of the calcuation in the brackets is negated.
4.2 THE NOR GATE
=======================================
The truth table for the NOR gate is as follows
A B | Q
-------+------
0 0 | 1
0 1 | 0
1 0 | 0
1 1 | 0
~(0 | 0) = 1
~(0 | 1) = 0
~(1 | 0) = 0
~(1 | 1) = 0
|
Category: Programming |
Views: 684 |
Added by: Maintate
| Rating: 0.0/0 |
|
|
|