Re: DMUX4WAY
Posted by
kingofbuffs on
Apr 21, 2020; 7:05pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/DMUX4WAY-tp4034403p4034450.html
Recently I have been doing a lot of programming/learning to program, so I tend to think a lot about conditionals, which I think prevents me from finding an answer.
My thought process tends to go like this:
There are 8 total outputs: a, b, c, d, e, f, g, h.
If sel[0]=0, we are left with 4 outputs: a, b, c, d.
And then if sel[1]= 0, we eleminate the last two, and left with a, b.
And finally if sel[2]=0, then in=a.

I just keep thinking this way but I don't know exactly how to translate it into the script. (I don't even know if it's the correct way to think about it.) Thank you for the tip, I will give this one a shot and try to do it with 2 DMux4ways, 1 DMux and 3 Not gates and see if I can come up with a solution of my own.