And16

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

And16

davnav
how to build And16 from NAND gate ?

Reply | Threaded
Open this post in threaded view
|

Re: And16

Sparky
actually u can implement And16 using the And gate which u have implemented using the basic Nand gate....i guess it would be much easier..but if u really want to implement it using Nand then u have to proceed in the same way as u have implemented And. i guess this is right....plz do confirm to me again anyone....
Reply | Threaded
Open this post in threaded view
|

Re: And16

davnav
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 ?
Reply | Threaded
Open this post in threaded view
|

Re: And16

davnav
This post was updated on .
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: And16

ybakos
Please edit your post and refrain from posting entire code listings. (Glad to see you figured it out).