mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
The other half of the mul64 rework. Sorry for the breakage, I committed
an incomplete version of what I tested. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3454 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7878ff6bc7
commit
5592a750b9
3 changed files with 7 additions and 5 deletions
|
@ -876,13 +876,13 @@ void op_msubu (void)
|
|||
#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
|
||||
void op_dmult (void)
|
||||
{
|
||||
CALL_FROM_TB4(muls64, &(env->HI[0][env->current_tc]), &(env->LO[0][env->current_tc]), T0, T1);
|
||||
CALL_FROM_TB4(muls64, &(env->LO[0][env->current_tc]), &(env->HI[0][env->current_tc]), T0, T1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void op_dmultu (void)
|
||||
{
|
||||
CALL_FROM_TB4(mulu64, &(env->HI[0][env->current_tc]), &(env->LO[0][env->current_tc]), T0, T1);
|
||||
CALL_FROM_TB4(mulu64, &(env->LO[0][env->current_tc]), &(env->HI[0][env->current_tc]), T0, T1);
|
||||
RETURN();
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue