You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request Description
When either mul or div are called, I would want the hi and lo "registers" to be used to store the requisite information
ex: mul output input1 input2 will put the lower 32 bits of the product in output and in lo and the upper 32 bits in hi
ex: div output input1 input2 will put the quotient in output and lo, and the remainder in hi
The text was updated successfully, but these errors were encountered:
Request Description
When either
mul
ordiv
are called, I would want thehi
andlo
"registers" to be used to store the requisite informationex:
mul output input1 input2
will put the lower 32 bits of the product inoutput
and inlo
and the upper 32 bits inhi
ex:
div output input1 input2
will put the quotient inoutput
andlo
, and the remainder inhi
The text was updated successfully, but these errors were encountered: