
2x6 bit inputs with a carry, 6 bit output with a carry
A=0b000001
IC = 0
B=0b000001
O=0b000010
OC = 0 \
| # | Input | Output | Bidirectional |
|---|---|---|---|
| 0 | 0th bit for A input | 0th bit for A+B | 0th bit for B input |
| 1 | 1st bit for A input | 1st bit for A+B | 1st bit for B input |
| 2 | 2nd bit for A input | 2nd bit for A+B | 2nd bit for B input |
| 3 | 3rd bit for A input | 3rd bit for A+B | 3rd bit for B input |
| 4 | 4th bit for A input | 4th bit for A+B | 4th bit for B input |
| 5 | 5th bit for A input | 5th bit for A+B | 5th bit for B input |
| 6 | Input Carry bit | Output Carry bit | |
| 7 |