|
first DMux
My code pass all test but when in and Sel become one it failed
My code
CHIP DMux {
IN in, sel;
OUT a, b ;
PARTS:
And ( a =in , b =sel , out = v) ;
Xor ( a = in , b = v , out = a) ;
what's the problem ?
Second
I try to make Mux4ways 16 with two dMux and two or and Mux
sel 0 go t o Dmux 1 (a,b ) then go to or gate and Dmux 2 (c,d) then go to or gate
then output of two or gates go to Mux with sel 1 but my code didn't work
|