|
Can any one see what is wrong with this
/** Demultiplexor ;
If Selector = 1 output to a else output to b */
CHIP gmgatedemulti {
IN A, B;
OUT a, b;
PARTS:
Not(in=A, out=w1);
And(a=w1, b=A, out=a);
And(a=A, b=B, out=b);
}
I get a keyword expected error
|