On 12/8/20 4:56 PM, Alistair Francis wrote: > +bool riscv_cpu_is_32bit(CPURISCVState *env) > +{ > + if (env->misa & RV64) { > + return false; > + } > + > + return true;
Is this ever going to more than return !(env->misa & RV64); ? r~
On 12/8/20 4:56 PM, Alistair Francis wrote: > +bool riscv_cpu_is_32bit(CPURISCVState *env) > +{ > + if (env->misa & RV64) { > + return false; > + } > + > + return true;
Is this ever going to more than return !(env->misa & RV64); ? r~