Login  Register

Re: Mux4Way16

Posted by WBahn on May 09, 2024; 5:31am
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Mux4Way16-tp4037818p4037821.html

hdllearn wrote
the purpose of
 //sel=00 or sel=11
  And(a=sel[0], b=sel[0], out= outand1);

is to determine if sel[0] =sel[1] or not
And how is it supposed to do that?

If sel[0] = 0, what is outand1 going to be?

If sel[0] = 1, what is outand1 going to be?

What does sel[1] have to do with it?

Be sure to look at what you actually wrote, not what you meant to write.