Login  Register

Re: Unable to load chip

Posted by gcheong on Jan 13, 2011; 7:02am
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Unable-to-load-chip-tp2246020p2246778.html

You are missing a semi-colon at the end of the line that specifies the inputs:

CHIP EQ3 {
        IN a[3], b[3]
...

Should be:

CHIP EQ3 {
        IN a[3], b[3];
...