Re: How do I combine 2 sperate bits in a 2bit input
Posted by Malco on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/How-do-I-combine-2-sperate-bits-in-a-2bit-input-tp3593549p3593611.html
Ok, I figured it out.
In case someone has a similar question here's the answer
Mux4Way16(a=a,b=b,c=c,d=d,sel[0]=s0,sel[1]=s1,out=out);
This does feel a bit 'funny'.Just out of curiosity, is this syntax common among real world HDL languages?