On 05/16/2018 11:51 AM, Edgar E. Iglesias wrote: > - env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); > + env->pvr.regs[11] = cpu->cfg.use_mmu ? PVR11_USE_MMU : 0 | > + 16 << 17;
I believe this needs parenthesis around the ?:. r~
On 05/16/2018 11:51 AM, Edgar E. Iglesias wrote: > - env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); > + env->pvr.regs[11] = cpu->cfg.use_mmu ? PVR11_USE_MMU : 0 | > + 16 << 17;
I believe this needs parenthesis around the ?:. r~