|
This is my PC solution:
Mux16 (a=in, b=false, sel=reset, out=outF);
Register (in=outF, load=reset, out=outRst);
Register (in=outRst, load=load, out=outLoad);
Inc16 (in=outLoad, out=outI);
Register (in=outI, load=inc, out=out);
I get a comparison failure. What is my mistake? How can I fix it?
|