Login  Register

chip wont load

Posted by pazgas on Nov 22, 2021; 5:54pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/chip-wont-load-tp4036480.html

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.