Login  Register

Re: And16

Posted by davnav on Jan 18, 2011; 3:13pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/And16-tp2277550p2280384.html

i want to build it from AND which I already build from NAND. but  idont know how.. no clues or informations are there in book



CHIP And16 {



    IN  a[16], b[16];

    OUT out[16];



    PARTS:

    And(a=a[0], b=b[0], out=out1);
    And(a=out1, b=a[1], out=out2);

    ---------

    -------------

}

is this way ?