|
Hello,
i managed to pass the ALU-nostat test but i fail to find the errors in my last parts.
the last lines of my ALU (spoiler alert):
CODE_________________________________________________________________________________________________________________________
Mux16 (a[0..15]=mux3, b[0..15]=mux3not, sel=no, out[0]=ngmux, out[0..7]=finalmux1, out[8..15]=finalmux2, out[0..15]=out[0..15]);
//last part of the computation (everything until here should be correct because the nostat test was passed)
Or8Way (in[0..7]=finalmux1, out=zr1);
Or8Way (in[0..7]=finalmux2, out=zr2);
Or (a=zr1, b=zr2, out=zror);
Not (in=zror, out=zr);
And (a=zror, b=ngmux, out=ng);
CODE_________________________________________________________________________________________________________________________
|