|
why I get this error (Sub bus of an internal node may not be used) when I write this code
Or8Way(in=lastout[0..7], out=out1);
Or8Way(in=lastout[8..15], out=out2);
Or(a=out1, b=out2, out=out3);
where already I use the all bus of the internal node. all I need to do is Oring bus of 16 bit by Or8Way.
|