On Wed, Jul 29, 2020 at 4:30 AM Anup Patel <[email protected]> wrote: > > The htinst CSR is writeable from M-mode and HS-mode so > we should not ignore writes to htinst CSR. > > Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Alistair Francis <[email protected]> Alistair > --- > target/riscv/csr.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/target/riscv/csr.c b/target/riscv/csr.c > index f985b85de4..99fcb7f67d 100644 > --- a/target/riscv/csr.c > +++ b/target/riscv/csr.c > @@ -943,6 +943,7 @@ static int read_htinst(CPURISCVState *env, int csrno, > target_ulong *val) > > static int write_htinst(CPURISCVState *env, int csrno, target_ulong val) > { > + env->htinst = val; > return 0; > } > > -- > 2.25.1 > >
