I'm currently working with micro-assembly language (MAL) and using the Mic1mmv simulator to test it. I'm trying to figure out how to make a program that multiplies two numbers, but I'm struggling with figuring out how to do so.
Here is the following MAL code for addition and substraction:
iadd1 MAR = SP = SP - 1; rd // Read in next-to-top word on stack
iadd2 H = TOS // H = top of stack
iadd3 MDR = TOS = MDR + H; wr; goto Main1 // Add top two words; write to top of stack
isub1 MAR = SP = SP - 1; rd // Read in next-to-top word on stack
isub2 H = TOS // H = top of stack
isub3 MDR = TOS = MDR - H; wr; goto Main1 // Do subtraction; write to top of stack
As an example, let's say I want to do 3 x 4. My thoughts about doing so is to take 3 and add it with another 3 for 4 times (3+3+3+3), but I have yet to figure out how I can make a if/else/loop or a countdown that keeps track on how many times it has been added together.
If anyone knows how to solve this or have any tips about this, I would be really grateful, thanks!
I know that this question is a bit old, but maybe I can still help someone else who is trying to understand the problem.
Obvious Answer
Given a multiplication
a * b
. As you guessed, the obvious answer that first comes to mind is to just calculateb + b + b + b + [...]
. And in fact that is a correct approach, though the calculation cycles needed completely depend on b now, so the bigger b gets the longer this approach will take to calculate.The Better Way
But, of course, there is a solution to that. Given the previous multiplication of
a * b
where both numbers are unsigned and 32 Bit, b can be described as the sum ofb(i) * 2^(i)
(0 <= i <= 32). Now if we multiply that with a, we getb(i) * (a * 2^(i))
(0 <= i <= 32). So to explain it in words, we go through each of the Bits and multiply their corresponding value in Binary. The result is now just the sum of each calculation. That leaves us with a maximum of 32 calculations.In C Code that would look something like that:
But this code, as is, can't be translated into microinstructions just yet.
for
andif
can't be translated 1:1In the following, second, approach we replace the for loop, with a while-loop. That is possible because we half b every time by shifting the bits, so b must be equal to 0 at one point. Explicitly after 32 shifts.
Now we can replace the higher control structures, such as the while loop:
Now we can start projecting it onto the mic-1.
We also have to project all our operations onto the mic-1.
b & 1 == 0
has to be done in two steps, so we use register H to store a 1a = a << 1
is nothing else thana = a + a
, because we are in binaryWith all that out of the way, let's see where we're at:
Now we can translate this directly into a micro-assembler program: