SPOILER ALERT: Contains a brief code snippet from Memory.hdl
(project 5).
I am receiving the error listed in the title of this question, yet I am certain that it is not related to connecting an internal part's output pin to the chip's input pin.
Here's the code which is creating the error. There's no other code in the program so far.
CHIP Memory {
IN in[16], load, address[15];
OUT out[16];
PARTS:
DMux(in=load,sel=address[14],a=load_ram,b=load_other);
}
What is going on?!