mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 08:15:40 +00:00
m68k: Silence compiler warnings
This commit is contained in:
parent
f694264212
commit
1c0e09c467
|
@ -27,10 +27,10 @@
|
|||
|
||||
#define SIGNBIT (1u << 31)
|
||||
|
||||
void raise_exception(CPUM68KState *env, int tt);
|
||||
|
||||
void HELPER(cf_movec_to)(CPUM68KState *env, uint32_t reg, uint32_t val)
|
||||
{
|
||||
M68kCPU *cpu = m68k_env_get_cpu(env);
|
||||
|
||||
switch (reg) {
|
||||
case M68K_CR_CACR:
|
||||
env->cacr = val;
|
||||
|
@ -49,7 +49,7 @@ void HELPER(cf_movec_to)(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);
|
||||
raise_exception(env, EXCP_ILLEGAL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -539,7 +539,8 @@ static void raise_exception_ra(CPUM68KState *env, int tt, uintptr_t raddr)
|
|||
cpu_loop_exit_restore(cs, raddr);
|
||||
}
|
||||
|
||||
static void raise_exception(CPUM68KState *env, int tt)
|
||||
void raise_exception(CPUM68KState *env, int tt);
|
||||
void raise_exception(CPUM68KState *env, int tt)
|
||||
{
|
||||
raise_exception_ra(env, tt, 0);
|
||||
}
|
||||
|
|
|
@ -4970,8 +4970,6 @@ DISAS_INSN(wddata)
|
|||
|
||||
DISAS_INSN(wdebug)
|
||||
{
|
||||
M68kCPU *cpu = m68k_env_get_cpu(env);
|
||||
|
||||
if (IS_USER(s)) {
|
||||
gen_exception(s, s->base.pc_next, EXCP_PRIVILEGE);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue