Revision e397ee33 target-mips/op.c

b/target-mips/op.c
1180 1180
    RETURN();
1181 1181
}
1182 1182

  
1183
void op_mfc0_config6 (void)
1184
{
1185
    T0 = env->CP0_Config6;
1186
    RETURN();
1187
}
1188

  
1189
void op_mfc0_config7 (void)
1190
{
1191
    T0 = env->CP0_Config7;
1192
    RETURN();
1193
}
1194

  
1183 1195
void op_mfc0_lladdr (void)
1184 1196
{
1185 1197
    T0 = (int32_t)env->CP0_LLAddr >> 4;
......
1653 1665
void op_cp1_enabled(void)
1654 1666
{
1655 1667
    if (!(env->CP0_Status & (1 << CP0St_CU1))) {
1656
        CALL_FROM_TB2(do_raise_exception_err, EXCP_CpU, 1);
1668
        CALL_FROM_TB2(do_raise_exception_direct_err, EXCP_CpU, 1);
1657 1669
    }
1658 1670
    RETURN();
1659 1671
}

Also available in: Unified diff