dmoeller wrote
Is And16 supposed to have 1 output, or 16 outputs? if it has 16 outputs, does that mean it has 32 inputs?
Both inputs and the output are 16-bit buses.
From the And16.hdl file:
/**
* 16-bit and gate. For i=0..15 out[i] = a[i] and b[i]
*/
CHIP And16 {
IN a[16], b[16];
OUT out[16];
PARTS:
--Mark