Question: IN MIPS PART 2. AN ASM EXAMPLE ASM Programming instructions: For this part your goal is to run some example assembly code (provided below), and

IN MIPS

IN MIPS PART 2. AN ASM EXAMPLE ASM Programming instructions: For this

part your goal is to run some example assembly code (provided below),

PART 2. AN ASM EXAMPLE ASM Programming instructions: For this part your goal is to run some example assembly code (provided below), and then modify the code to read in and add 3 numbers instead of just 2 2. 3. 4. 5. 6. 7, 8. data # variable declarations follow this line text # instructions follow this line main: ## Code Part 1: Get first number from user, put into $t0 ori $v0, $0,5 # OUR CODE BEGINS HERE: load syscall read-int into $v0. syscall # make the syscall. addu $t0, $0, $v0 # move the number read into $t0 ## Get second number from user, put into $t1. ori $v0, $0,5 # load syscall read-int into $v0. 10. syscall # make the syscall. 11, addu $t1, $0, $v0 # move the number read into St1. 12, add $12, $t0, $t1 # compute the sum. 13. ## Print out $t2. 14, addu $a0, $0, $t2 # move the number to print into $a0 15, ori $v0, $0. 1 # load syscall print-int into $v0. 16. syscall # make the syscall. 17. ori $v0, $0, 10 # syscall code 10 is for exit. 18. syscall # make the syscall. 19. ## end of add2.asm

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!