Implement the programs in ARM assembly.
implement them first in JAVA and translate the logic into assembly
- Implement a program to calculate multiplication using successive addition with recursion. For example, 5×4 is 5+5+5+5. This can be defined recursively as:
Mult(m, n) = if n is 1, return m
else return m + Mult(m, n-1)