Commit afed2608 authored by Edgar E. Iglesias's avatar Edgar E. Iglesias
Browse files

microblaze: Ignore non-cpu accesses to unmapped areas

parent f7d42093
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -500,7 +500,7 @@ void cpu_unassigned_access(CPUMBState *env, hwaddr addr,
{
    qemu_log_mask(CPU_LOG_INT, "Unassigned " TARGET_FMT_plx " wr=%d exe=%d\n",
             addr, is_write, is_exec);
    if (!(env->sregs[SR_MSR] & MSR_EE)) {
    if (!env || !(env->sregs[SR_MSR] & MSR_EE)) {
        return;
    }