Implement Booth's algorithm in MIPS. Submit your source code and output showing the result of it multiplying 7 * -6.
Your program will need to 'show its work' by printing out inputs, computations and results as described below.
Print out the multiplication problem as follows (example for a four-bit multiplication):
0 0 1 0 (N-bit multiplicand)
1 0 1 1 (N-bit multiplier)
-------
0 0 1 0 1 0 1 1 (2N-bit product register for iteration #1)
etc... more 2N-bit product register contents...
---------------
result (final contents of 2N-bit product register)
Attachment:- IMG_1385.jpg