Re: mux4way16 selector only accept 0 or 1 ?

Posted by cadet1620 on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/mux4way16-selector-only-accept-0-or-1-tp4027771p4027780.html

Change the names of the outputs from the first demux and it may be clearer what needs to happen:
    DMux(in = in , sel = sel[1], a = aORb, b = cORd );

The second rank of demuxes then needs to demux aORb and cORd to their final outputs.

--Mark