binary multiplier circuit

Thread Starter

Redexx

Joined Feb 2, 2013
2
Hi.

First i wanna mention, im a complete noob at this.

I've got this assignment where im to design a circuit, which takes a positive 4bit number A and multiply it with + / - 10(des)

I've tried googling it without any luck. :mad:

Can anyone help me?
Any pointers?

much appriciated
 

tshuck

Joined Oct 18, 2012
3,534
10(des) is that meaning decimal?

You could implement a successive adder to perform the multiplication:
e.g. 3*10 = 10 + 10 + 10 = 30, a Booth multiplier, or you could try a combinational approach like discussed here...
 

Thread Starter

Redexx

Joined Feb 2, 2013
2
10(des) is that meaning decimal?

You could implement a successive adder to perform the multiplication:
e.g. 3*10 = 10 + 10 + 10 = 30, a Booth multiplier, or you could try a combinational approach like discussed here...

yes, im supposed to multiply any 4bit number with 10, and design the circuit for it, but thus far im still all dead i dunno how to start and where to start.

i checked your link, it seemed far too complicated
 

tshuck

Joined Oct 18, 2012
3,534
yes, im supposed to multiply any 4bit number with 10, and design the circuit for it, but thus far im still all dead i dunno how to start and where to start.

i checked your link, it seemed far too complicated
Then i would suggest taking the successive-addition route. A simple FSM can do this...
 

WBahn

Joined Mar 31, 2012
33,190
yes, im supposed to multiply any 4bit number with 10, and design the circuit for it, but thus far im still all dead i dunno how to start and where to start.

i checked your link, it seemed far too complicated
What kind of circuit are you expected to come up with? Combinatorial or sequential?
 
Top