Advertisement
math230

Intro to using SW to write to memory

Jul 20th, 2020
2,332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Intro to using SW to write to memory
  2. .data
  3.      #0x10010000
  4. A:  .word  2,1,0,3,4,5,6,7,8,9  
  5.  
  6. .text
  7.     la $t1,A
  8.     lw $t2, 36($t1) #t2 <- A[8]
  9.     sw $t2, 0($t1)  #t2 -> A[0]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement