Re: Can you help me to figure why this chip is not working?

Posted by GustavoB on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Can-you-help-me-to-figure-why-this-chip-is-not-working-tp4025572p4025578.html

I changed it:

CHIP Not {
IN in;
OUT out;
PARTS:
Nand(a=in,b=in,out=out);
}

And:

CHIP Or {
IN a,b;
OUT out;
PARTS:
Not(in=a,out=d);
Not(in=b,out=e);
Nand(a=d,b=e,out=out);
}

And it's still giving me the error.

My name is Beuys von Telekraft, and I am a scientist. I work in my laboratory night and day.