Guest User

Untitled

a guest
Jul 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. .data
  2. a: .word 5
  3. b: .word 10
  4. c: .word 20
  5. f: .word
  6.  
  7. .text
  8. lw $t0, a
  9. lw $t1, b
  10. lw $t2, c
  11. lw $t3, f
  12.  
  13. add $t3, $t0, $t1
  14. sub $t3, $t3, $t2
  15.  
  16. li $v0, 1
  17. move $a0, $t3
  18. syscall
Add Comment
Please, Sign In to add comment