Advertisement
AntoninoDG

easySum.asm

Feb 28th, 2020
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .data
  2.     num1: .word 10
  3.     num2: .word 2
  4. .text
  5.     lw $t0, num1
  6.     lw $t1, num2
  7.     add $t2, $t0, $t1   #somma
  8.     li $v0, 1       #stampa
  9.     move $a0, $t2
  10.     syscall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement