fixes wrong array size which led to unintended CSR definitions

This commit is contained in:
2023-03-15 14:16:08 +01:00
parent fedbff5971
commit a943dd3bdf
2 changed files with 2 additions and 2 deletions

View File

@ -375,7 +375,7 @@ riscv_hart_m_p<BASE, FEAT>::riscv_hart_m_p(feature_config cfg)
//csr_wr_cb[addr] = &this_class::write_csr_reg;
}
// common regs
const std::array<unsigned, 9> addrs{{
const std::array<unsigned, 8> addrs{{
misa, mvendorid, marchid, mimpid,
mepc, mtvec, mscratch, mtval
}};