dmoeller wrote
one thing I just though of, For the Or8Way and the MuxXWay chips, could I do somehting like:
out=out
for every Or chip I reference?
You will need several Or chips to make intermediate results. Only the final Or will have out=out.
Start with something like
Or (a=in[0], b=in[1], out=or1);
Do this for all 4 pairs of input bits and you have reduced the problem to ORing the 4 or
n signals together.
--Mark