Login  Register

Re: Building chips problem.

Posted by GustavoB on Dec 10, 2011; 2:23pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Building-chips-problem-tp3468285p3575454.html

I was afraid because milythael said to do not post code here.

But to assemble the chip, I tried two ways:

/* Not gate */
CHIP Not {
IN v;
OUT out;
PARTS:
Part1(..., out=v);
Part2(in=v, ...);
Part3(a=v, b=v);
Nand(a=v, b=v, out=out);
}


And:

/* Not gate */
CHIP Not {
IN v;
OUT out;
PARTS:
Part1(in=v, out=v);
Nand(a=v, b=v, out=out);
}


And I got the same error on both.
My name is Beuys von Telekraft, and I am a scientist. I work in my laboratory night and day.