Fix enough FPU/R2 support to get 24Kf going.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2528 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-03-23 00:43:28 +00:00
parent 51789c410b
commit e397ee3382
5 changed files with 66 additions and 26 deletions

View file

@ -1180,6 +1180,18 @@ void op_mfc0_config3 (void)
RETURN();
}
void op_mfc0_config6 (void)
{
T0 = env->CP0_Config6;
RETURN();
}
void op_mfc0_config7 (void)
{
T0 = env->CP0_Config7;
RETURN();
}
void op_mfc0_lladdr (void)
{
T0 = (int32_t)env->CP0_LLAddr >> 4;
@ -1653,7 +1665,7 @@ void op_dmtc0_errorepc (void)
void op_cp1_enabled(void)
{
if (!(env->CP0_Status & (1 << CP0St_CU1))) {
CALL_FROM_TB2(do_raise_exception_err, EXCP_CpU, 1);
CALL_FROM_TB2(do_raise_exception_direct_err, EXCP_CpU, 1);
}
RETURN();
}