On 8/12/21 9:10 AM, matheus.fe...@eldorado.org.br wrote:
static bool avr_need_swap(CPUPPCState *env) { + bool le; +#if defined(CONFIG_USER_ONLY) + le = false; +#else + le = msr_le; +#endif
It certainly doesn't seem like the right fix.My first guess was that MSR_LE wasn't being properly set up at cpu_reset for user-only, but it's there.
r~