Coding Question 2 – MIPS Programming Given an integer N sto…
Coding Question 2 – MIPS Programming Given an integer N stored at memory address 3000, write a MIPS program that stores the result of N \ 16 at memory address 3012 and the result of N*8 at memory address 3016. Hint: Remember that you can use shift operations to multiple or divide by a power of 2 depending how far you shift.