
8-bit multiplier, goes to 16-bit internally, then outputs over the course of two cycles.
Right now we can feasibly test 65536 test cases, this will have to change if we increase the size of the thing.
There isn't any for the time being. Maybe a display? That would need extra cycles though.
| # | Input | Output | Bidirectional |
|---|---|---|---|
| 0 | in_1[0] | out[0] | in_2[0] |
| 1 | in_1[1] | out[1] | in_2[1] |
| 2 | in_1[2] | out[2] | in_2[2] |
| 3 | in_1[3] | out[3] | in_2[3] |
| 4 | in_1[4] | out[4] | in_2[4] |
| 5 | in_1[5] | out[5] | in_2[5] |
| 6 | in_1[6] | out[6] | in_2[6] |
| 7 | in_1[7] | out[7] | in_2[7] |