Re: Internal buses
Posted by ybakos on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Internal-buses-tp4026592p4026595.html
It is saying that notaddab is an internal bus, so you can not sub-bus its pins via notaddab[0].
To get around this, you can:
Not16(in=addab, out[0]=notaddab0, out[1]=notaddab1, ...);
And then
Not(in=notaddab0, out=out[0]);
But, what chip are you trying to build? This seems like an overly complicated implementation.