Hi Folks .. this my first post here ... and i ve just started reading this great book. And when i tried to simulated my first code i have error like answer
So the code was:
CHIP Xor1 {
IN a, b;
OUT out;
PARTS:
Not(in=a, out=nota);
Not(in=b, out=notb);
And(a=a, b=notb, out=w1);
And(a=nota, b=b, out=w2);
Or(a=w1, b=w2, out=out);
}
And the err is :
Line 3. Missing CHIP keyword. So as you see the CHIP word is here, but i can't start simulating my first code.
SO can someone help me with that because i want to proceed with book