Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. .data
  2. g:.word 100
  3.  
  4. .text
  5. lw $s0,g
  6. add $a0,$s0,$zero
  7. fatt:
  8. addi $s0,$s0,-1
  9. bne $s0,$zero,moltiplicazione
  10. li,$v0,1
  11. jal exit
  12. moltiplicazione :
  13. beq $s0,$zero,exit
  14. mul $a0,$a0,$s0
  15. j fatt
  16. exit:
  17. Syscall
  18. li $v0,10
  19. Syscall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement