Connect 16-bit chip inputs/outputs directly to 16-bit part inputs/outputs.
For example, if you had a Nand16 part, you could make an And16 like this:
Nand16(a=a, b=b, out=x);
Not16(in=x, out=out);
You can also use "[0..15]" to mean the entire bus, but it's more typing:
Nand16(a[0..15]=a[0..15], b[0..15]=b[0..15], out[0..15]=x);
Note: you can't use [] on internal buses like 'x' in this example.
--Mark