|
I try to bulid demux4way using and and not gate
Not(in=sel[0], out=notsel0);
Not(in=sel[1], out=notsel1);
And(a=notsel0, b=notsel1, c=in, out=a);
And(a=sel[0], b=notsel1, c=in, out=b);
And(a=notsel0, b=sel[1], c=in, out=c);
And(a=sel[1], b=sel[0], c=in, out=d);
i found internal pins notsel1 and notsel0 are always 0
why ?
thank you in advance
|