Problem:
Question- Write a RISC-style program that computes the expression SUM = 580 + 68400 +80000. Assume that numbers are in decimal notation, and assume that the following is given to you in the code:
Move R2, #NUMBERS Get the address of numbers.
//Your code goes here
ORIGIN 0x500 Numbers to be added. NUMBERS: DATAWORD 580, 68400, 80000 Space for the sum. SUM: RESERVE 4.
Write the code step by step and explain it.