This shows you the differences between two versions of the page.
ac-is:lab:lab00 [2024/03/05 15:52] alexandru.predescu [Porți logice] |
ac-is:lab:lab00 [2024/03/05 15:53] (current) alexandru.predescu [Porți logice] |
||
---|---|---|---|
Line 65: | Line 65: | ||
<html><p align="left">Porțile logice de bază</p></html> | <html><p align="left">Porțile logice de bază</p></html> | ||
- | |||
- | ^ Name ^ Symbol ^ Operator ^ Truth table ^^^ | ||
- | | Inverter (NOT) | {{.:lab00:gate-not.png?nolink&|}} | f = !a | a || f | | ||
- | | ::: | ::: | ::: | 0 || 1 | | ||
- | | ::: | ::: | ::: | 1 || 0 | | ||
- | | OR | {{.:lab00:gate-or.png?nolink&|}} | f = a %%||%% b | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 1 | | ||
- | | AND | {{.:lab00:gate-and.png?nolink&|}} | f = a && b | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 1 | | ||
- | | NOR | {{.:lab00:gate-nor.png?nolink&|}} | f = !(a %%||%% b) | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 0 | | ||
- | | NAND | {{.:lab00:gate-nand.png?nolink&|}} | f = !(a && b) | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 0 | | ||
- | | XOR (exclusive OR) | {{.:lab00:gate-xor.png?nolink&|}} | f = a %%^%% b | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 0 | | ||
- | | XNOR (exclusive NOR) | {{.:lab00:gate-xnor.png?nolink&|}} | f = !(a %%^%% b) | a | b | f | | ||
- | | ::: | ::: | ::: | 0 | 0 | 1 | | ||
- | | ::: | ::: | ::: | 0 | 1 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 0 | 0 | | ||
- | | ::: | ::: | ::: | 1 | 1 | 1 | | ||
- | <html><p align="left">Basic logic gates</p></html> | ||