Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ES1
- .text
- .globl main
- main:
- la $s0,x
- la $s1, y
- loop: blt $s0,$s1, condizione_x
- blt $s1,$s0, condizione_y
- condizione_x:
- sub $v0,$s0,$s0
- addi $v0,$v0,1
- jr $ra
- condizione_y: sub $v0,$s0,$s1
- addi $v0,$v0,1
- jr $ra
- .data
- x: .word 1
- y: .word 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement