fix m68k func name (#1245)
* fix finding python path which only has python3. * fix m68k func name.
This commit is contained in:
@ -125,9 +125,6 @@ void cpu_m68k_flush_flags(CPUM68KState *env, int cc_op)
|
|||||||
env->cc_dest = flags;
|
env->cc_dest = flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* this function is implemented in op_helper.c: void HELPER(raise_exception) */
|
|
||||||
void raise_exception(CPUM68KState *env, uint32_t tt);
|
|
||||||
|
|
||||||
void HELPER(movec)(CPUM68KState *env, uint32_t reg, uint32_t val)
|
void HELPER(movec)(CPUM68KState *env, uint32_t reg, uint32_t val)
|
||||||
{
|
{
|
||||||
switch (reg) {
|
switch (reg) {
|
||||||
@ -145,7 +142,7 @@ void HELPER(movec)(CPUM68KState *env, uint32_t reg, uint32_t val)
|
|||||||
default:
|
default:
|
||||||
qemu_log("Unimplemented control register write 0x%x = 0x%x\n",
|
qemu_log("Unimplemented control register write 0x%x = 0x%x\n",
|
||||||
reg, val);
|
reg, val);
|
||||||
raise_exception(env, EXCP_UNSUPPORTED);
|
helper_raise_exception(env, EXCP_UNSUPPORTED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user