The MASM Forum

Miscellaneous => Irvine Book Questions. => Topic started by: xcbart on May 21, 2019, 01:23:29 AM

Title: What are steps for multiplication by repeated addition?
Post by: xcbart on May 21, 2019, 01:23:29 AM

Hi everyone,

I'm not asking for a code. I just need someone to tell the steps in plain English.
Thank you
Title: Re: What are steps for multiplication by repeated addition?
Post by: jj2007 on May 21, 2019, 01:25:57 AM
a=b*c: move c into b, then repeat addition of c n-1 times.
Title: Re: What are steps for multiplication by repeated addition?
Post by: FORTRANS on May 21, 2019, 03:49:13 AM
Hi,

   Seven times five is equal to five plus five plus five plus five plus
five plus five plus five.

Cheers,

Steve
Title: Re: What are steps for multiplication by repeated addition?
Post by: i Z ! on May 21, 2019, 06:01:45 AM
Let's say you're multiplying 00000011 and 00010110 :

result = 00000110 + 00001100 + 00110000

As you can see you only replace each 1 in the second number with the whole first number and sum them together. This would be my approach however...