Advertisement
GiaGio

Untitled

Oct 24th, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. .text
  2. .globl main
  3. main:
  4. lw $t0, X
  5. lw $t1, Y
  6. slt $t2, $t0, $t1
  7. beq $t2,$zero, maxx
  8. add $t2,$t0,$zero
  9. j final
  10. maxx:
  11. add $t2,$t1,$zero
  12. j final
  13. final:
  14. sub $v0, $t0, $t2
  15. addi $v0, $v0, 1
  16. syscall
  17.  
  18. .data
  19. X: .word 7
  20. Y: .word 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement