计算机代写 # Solution file for assembly question Q12B

# Solution file for assembly question Q12B
# – Assume that $a0 and $a1 contain two positive integers.
# – Set $v0 to the least common multiple for $a0 and $a1
# (the smallest positive integer evenly divisible by $a0 and $a1)

Copyright By PowCoder代写 加微信 powcoder

# – Again, do not perform this operation recursively.
# – Make sure to comment your code and use meaningful label names.
# – Do not use jr $ra or syscall commend to terminate your program.

addi $a0, $zero, 8 # we will change this value in testing.
addi $a1, $zero, 6 # we will also change this value in testing.
#######################################
# ONLY ALTER THE CODE BELOW THIS LINE #
#######################################

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com