22 bit nand

Guest
i want to take 22 inputs and NAND them

nand (outputwire, inputwire1, inputwire2);

is only doing it for 1 bit

how do i make a 22 bit nand without cascading so many times?

thanks
 
nand (outputwire, inputwire1, inputwire2);
should be

nand N1 (outputwire, inputwire1, inputwire2);


so.. how do i make it a 22 bit nand without cascading?
 
mahurshi@gmail.com wrote:

nand (outputwire, inputwire1, inputwire2);

should be

nand N1 (outputwire, inputwire1, inputwire2);
I thought names were optional on primitives, anyway...

so.. how do i make it a 22 bit nand without cascading?
How about with the prefix & operator on a 22 element vector.
Is this for simulation, or synthesis? For the latter, does the
target architecture support a 22 input NAND?

The highest I know of is the 74S133.

-- glen
 

Welcome to EDABoard.com

Sponsor

Back
Top