mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-06-24 21:51:26 +00:00
target/arm: Fix arm_cpu_dump_state vs FPSCR
Backports commit ec527e4eeccc31e3beadf3b61b66c61bbd873811 from qemu
This commit is contained in:
parent
ed7c9d0710
commit
4e44043956
|
@ -13866,7 +13866,7 @@ void arm_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
|
||||||
i * 2 + 1, (uint32_t)(v >> 32),
|
i * 2 + 1, (uint32_t)(v >> 32),
|
||||||
i, v);
|
i, v);
|
||||||
}
|
}
|
||||||
cpu_fprintf(f, "FPSCR: %08x\n", (int)env->vfp.xregs[ARM_VFP_FPSCR]);
|
cpu_fprintf(f, "FPSCR: %08x\n", vfp_get_fpscr(env));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue