Component |
Type |
Description |
buf |
a -> a |
Buffer: amplifies signal but doesn't change it |
inv |
a -> a |
Inverter: logical negation of input |
and2 |
a -> a -> a |
2-input and gate |
nand2 |
a -> a -> a |
2-input not-and gate |
or2 |
a -> a -> a |
2-input inclusive or gate |
nor2 |
a -> a -> a |
2-input not-or gate |
xor2 |
a -> a -> a |
2-input exclusive or gate |
xnor2 |
a -> a -> a |
negation of xor2 |
and3 |
a -> a -> a -> a |
3-input and gate |
nand3 |
a -> a -> a -> a |
3-input not-and gate |
or3 |
a -> a -> a -> a |
3-input inclusive or gate |
nor3 |
a -> a -> a -> a |
3-input not-or gate |
xor3 |
a -> a -> a -> a |
3-input exclusive or gate |
xnor3 |
a -> a -> a -> a |
negation of xor3 |
and4 |
a -> a -> a -> a -> a |
4-input and gate |
nand4 |
a -> a -> a -> a -> a |
4-input not-and gate |
or4 |
a -> a -> a -> a -> a |
4-input inclusive or gate |
nor4 |
a -> a -> a -> a -> a |
4-input not-or gate |
xor4 |
a -> a -> a -> a -> a |
4-input exclusive or gate |
xnor4 |
a -> a -> a -> a -> a |
negation of xor4 |