Re: Chap 1 - AND gate

Posted by Synthart on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Chap-1-AND-gate-tp2148353p4014177.html

CHIP And {

     IN in;
     OUT out;

     PARTS:
    And(a=in,b=in,
     a[0],b[0],out[0],
     a[1],b[0],out[0],
     a[0],b[1],out[0],
     a[1],b[1],out[1],
     );
}
Loading Chip but never loads