lonelyjohner wrote
Is there any thing like the "for" loop I could use in DHL to save some trouble repetitively inputting code?
There are no looping constructs in HDL. You will need to have one line for each bit in the Xxx16.hdl files.
Hint: it is fastest to write a line like
Xyz(a=a[], b=b[], out=out[]);
and copy it 15 times. Then you can quickly run down the columns, starting with the rightmost column, inserting the bit numbers.
--Mark