Question

MIPS question when data section is num: .byte 16, 32   write a MIPS program to print...

MIPS question

when data section is
num: .byte 16, 32  

write a MIPS program to print the content of the memory at address (num+1).
  

0 0
Add a comment Improve this question Transcribed image text
Answer #1


.data
   num: .byte 16, 32

.text
   la $t0, num #get address of num
   add $t0, $t0, 1 #next address
   move $a0, $zero #clear a0
   lb $a0, ($t0) #load byte at next address stored in $t0
   li $v0, 1
   syscall
  
   li $v0, 10 #exit
   syscall
  

output
----
32
-- program is finished running --

Add a comment
Know the answer?
Add Answer to:
MIPS question when data section is num: .byte 16, 32   write a MIPS program to print...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT