Re: pass through?

Posted by cadet1620 on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/pass-through-tp2549046p2673054.html

I would do this by adding a new primitive:
/**
 * Wire. out = in.
 */

CHIP Wire {

    IN  in;
    OUT out;

    BUILTIN Wire;
}
In fact, I wrote this part using Not-Not, as above, to get around the "sub-bus of an internal bus" problem before I realized the correct way to solve that problem.

--Mark