Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how to use two 4bit multipliers to make up a 8bit multiplier

Status
Not open for further replies.

red_0220

Junior Member level 1
Joined
Aug 8, 2009
Messages
17
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,431
Hi all,
Could you tell me how to use two 4bit multipliers to make up a 8bit multiplier?
thanks.
 

Re: how to use two 4bit multipliers to make up a 8bit multip

Will it allow AND/OR gates to be part of the soultion.? A good way to find out is to use synthesis tool to do the experiment and see what result it gives you. If synthesis tool can't do it, then it is most likely not doable. Post the result if you find one.
 

Re: how to use two 4bit multipliers to make up a 8bit multip

we can do it using 4 4-bit multipliers? and 3 Ripple Carry adders.
 
Re: how to use two 4bit multipliers to make up a 8bit multip

raja.mst said:
we can do it using 4 4-bit multipliers? and 3 Ripple Carry adders.


Can you tell me how to do it?
Thanks.

Added after 1 minutes:

raja.mst said:
we can do it using 4 4-bit multipliers? and 3 Ripple Carry adders.

Can you tell me how to do it?
Thanks.

Added after 2 minutes:

To raja.mst

Can you tell me how to do it?
Thanks.

Added after 5 minutes:

raja.mst said:
we can do it using 4 4-bit multipliers? and 3 Ripple Carry adders.

Can you tell me how to do it?
Thanks.
 

Re: how to use two 4bit multipliers to make up a 8bit multip

Hey Raj,
Can you tell us how you implement this?
Thanks
 

Re: how to use two 4bit multipliers to make up a 8bit multip

Same as paper and pencil method.

a,b,c,d are four bits. ab and cd are 8 bit.

ab x cd = (b x d) + (a x d)<<4 + (c x b)<<4 + (a x c)<<8
 

    red_0220

    Points: 2
    Helpful Answer Positive Rating
Re: how to use two 4bit multipliers to make up a 8bit multip

bunalmis said:
Same as paper and pencil method.

a,b,c,d are four bits. ab and cd are 8 bit.

ab x cd = (b x d) + (a x d)<<4 + (c x b)<<4 + (a x c)<<8

If I want to make up 16 bit multiplier by 4 bit multiplier.
Need Sixteen 4 bit multiplier at least?

thanks
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top