Re: simulator error? Bit
Posted by
cadet1620 on
Sep 09, 2016; 2:22pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/simulator-error-Bit-tp4030193p4030194.html
dmoeller wrote
My instructor showed us how to make the Bit chip. the ouput of the DFF is connected to the load on the Mux before it. When i run this in the hardware simulator, I get cannot connect parts output pin to gates input.
HDL does not allow you to use any signal mentioned on the OUT line.
CHIP Bit {
IN in, load;
OUT out; <=======
PARTS:
// Put your code here:
}
You must have another "out=" connection on the DFF that can be used to connect to the Mux.
DFF (in=muxOut, out=out, out=dffOut);
--Mark