mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 15:55:33 +00:00
target/mips: Amend botched rename
This commit is contained in:
parent
d50a1fef6b
commit
2b5d424ded
|
@ -27622,7 +27622,7 @@ static void decode_mmi(CPUMIPSState *env, DisasContext *ctx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void decode_mmi_lq(CPUMIPSState *env, DisasContext *ctx)
|
static void gen_mmi_lq(CPUMIPSState *env, DisasContext *ctx)
|
||||||
{
|
{
|
||||||
generate_exception_end(ctx, EXCP_RI); /* TODO: MMI_OPC_LQ */
|
generate_exception_end(ctx, EXCP_RI); /* TODO: MMI_OPC_LQ */
|
||||||
}
|
}
|
||||||
|
@ -29705,7 +29705,7 @@ static void decode_opc(CPUMIPSState *env, DisasContext *ctx, bool *insn_need_pat
|
||||||
case OPC_MSA: /* OPC_MDMX */
|
case OPC_MSA: /* OPC_MDMX */
|
||||||
if (ctx->insn_flags & INSN_R5900) {
|
if (ctx->insn_flags & INSN_R5900) {
|
||||||
#if defined(TARGET_MIPS64)
|
#if defined(TARGET_MIPS64)
|
||||||
decode_mmi_lq(env, ctx); /* MMI_OPC_LQ */
|
gen_mmi_lq(env, ctx); /* MMI_OPC_LQ */
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
/* MDMX: Not implemented. */
|
/* MDMX: Not implemented. */
|
||||||
|
|
Loading…
Reference in a new issue