.text
.globl SWDIVU
.globl SWDIV
###
# Emulation of DIVU (unsigned) in software without the use of dedicated division hardware
###
SWDIVU: # Expects dividend in $a0, divisor in $a1 – produces quotient in $v0, remainder in $v1
###
# YOUR CODE GOES HERE.
###
jr $ra
###
# Emulation of DIV (signed) in software without the use of dedicated division hardware
###
SWDIV: # Expects dividend in $a0, divisor in $a1 – produces quotient in $v0, remainder in $v1
###
# YOUR CODE GOES HERE.
###
jr $ra