|
Hi Everyone,
I have been stuck on the mux4way16 for hours and keep getting the same error.
I feel that I don't have the complete understanding of how this mutibus function.
Any further clarification will surely be appreciated.
below my hdl:
CHIP Mux4Way16 {
IN a[16], b[16], c[16], d[16], sel[2];
OUT out[16];
PARTS:
// Put your code here:
Mux16 (a=a, b=b, sel=sel[0], out=x);
Mux16 (a=c, b=d, sel=sel[1], out=y);
Mux16 (a=x, b=y, sel=sel[0], out=out);
}
|