Logic gates
editBoolean implementation
editTemplate: {{/AND|True/False|True/False}}
Permutations:
- False|False: False
- False|True: False
- True|False: False
- True|True: True
Template: {{/NAND|True/False|True/False}}
Permutations:
- False|False: True
- False|True: True
- True|False: True
- True|True: False
Template: {{/OR|True/False|True/False}}
Permutations:
- False|False: False
- False|True: True
- True|False: True
- True|True: True
Template: {{/NOR|True/False|True/False}}
Permutations:
- False|False: True
- False|True: False
- True|False: False
- True|True: False
Template: {{/XOR|True/False|True/False}}
Permutations:
- False|False: False
- False|True: True
- True|False: True
- True|True: False
Template: {{/XNOR|True/False|True/False}}
Permutations:
- False|False: True
- False|True: False
- True|False: False
- True|True: True
Binary implementation
editTemplate: {{/AND|1/0|1/0}}
Permutations:
- 0|0: 0
- 0|1: 0
- 1|0: 0
- 1|1: 1
Template: {{/NAND|1/0|1/0}}
Permutations:
- 0|0: 1
- 0|1: 1
- 1|0: 1
- 1|1: 0
Template: {{/OR|1/0|1/0}}
Permutations:
- 0|0: 0
- 0|1: 1
- 1|0: 1
- 1|1: 1
Template: {{/NOR|1/0|1/0}}
Permutations:
- 0|0: 1
- 0|1: 0
- 1|0: 0
- 1|1: 0
Template: {{/XOR|1/0|1/0}}
Permutations:
- 0|0: 0
- 0|1: 1
- 1|0: 1
- 1|1: 0
Template: {{/XNOR|1/0|1/0}}
Permutations:
- 0|0: 1
- 0|1: 0
- 1|0: 0
- 1|1: 1
Adders
editTemplate: {{/Adder|carryout=True/NA|1/0|1/0}}
Permutations:
- 0|0|0:
- Value: 0
- Carryout: 0
- 1|0|0:
- Value: 1
- Carryout: 0
- 0|1|0:
- Value: 1
- Carryout: 0
- 0|0|1:
- Value: 1
- Carryout: 0
- 1|1|0:
- Value: 0
- Carryout: 1
- 0|1|1:
- Value: 0
- Carryout: 1
- 1|0|1:
- Value: 0
- Carryout: 1
- 1|1|1:
- Value: 1
- Carryout: 1
Template: {{/2-bit adder|1/0|1/0|1/0|1/0}}
Permutations:
- 0|0|1|1: 00
Minimum & maximum:
- 0|0|0|0: 00
- 1|1|1|1: 10
Identity test:
- 1|0|0|0: 01
- 0|1|0|0: 01
- 0|0|1|0: 10
- 0|0|0|1: 10
Carryout:
- 0|0|0|0: 0
- 1|1|1|1: 1
- 1|0|0|0: 0
- 0|1|0|0: 0
- 0|0|1|0: 0
- 0|0|0|1: 0
- 0|0|1|1: 1
Template: {{/4-bit adder|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0}}
Permutations:
Minimum & maximum:
- 0|0|0|0|0|0|0|0: 0000
- 1|1|1|1|1|1|1|1: 1010
Identity test:
- 1|0|0|0|0|0|0|0: 0001
- 0|1|0|0|0|0|0|0: 0001
- 0|0|1|0|0|0|0|0: 0010
- 0|0|0|1|0|0|0|0: 0010
- 0|0|0|0|1|0|0|0: 0100
- 0|0|0|0|0|1|0|0: 1000
- 0|0|0|0|0|0|1|0: 1000
- 0|0|0|0|0|0|0|1: 0000
Carryout:
- 0|0|0|0|0|0|0|0: 0
- 1|1|1|1|1|1|1|1: 1
- 1|0|0|0|0|0|0|0: 0
- 0|1|0|0|0|0|0|0: 0
- 0|0|1|0|0|0|0|0: 0
- 0|0|0|1|0|0|0|0: 0
- 0|0|0|0|0|0|1|1: 1
Template: {{/8-bit adder|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0}}
Permutations:
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
Minimum & maximum:
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1: 1
Identity test:
- 1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1: 0
Carryout:
- 1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1: 0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1: 1
- 1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1: 1
Template: {{/16-bit adder|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0|1/0}}
Permutations:
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
1
- 1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
1
Minimum & maximum:
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1|1: 1
1
Identity test:
- 1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0 - Bugged (value is +1 what it should be)
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0: 0
0
- 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1: 0
0 - Bugged (value is +1 what it should be)