fix m68k func name (#1245)

* fix finding python path which only has python3.

* fix m68k func name.
This commit is contained in:
Chen Huitao 2020-04-28 09:51:45 +08:00 committed by GitHub
parent 9a70675975
commit 414c230b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,9 +125,6 @@ void cpu_m68k_flush_flags(CPUM68KState *env, int cc_op)
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)
{
switch (reg) {
@ -145,7 +142,7 @@ void HELPER(movec)(CPUM68KState *env, uint32_t reg, uint32_t val)
default:
qemu_log("Unimplemented control register write 0x%x = 0x%x\n",
reg, val);
raise_exception(env, EXCP_UNSUPPORTED);
helper_raise_exception(env, EXCP_UNSUPPORTED);
}
}