|
hi, ive implemented a Mux2-1 chip
the file name is the same as the chip and its sitting in a folder that is at the same level of the bat files
CHIP 2MUX1 {
IN a, b, c;
OUT out;
PARTS:
Not(in=c,out=Nc);
And(a=a ,b=Nc ,out=a_Nc);
And(a=b ,b=c ,out=b_c);
Or(a=a_Nc ,b=b_c ,out=out);
}
cant find the problem and HW simulator doesnt load it.
|