From: Tim Newsome Date: Thu, 21 Sep 2017 21:54:06 +0000 (-0700) Subject: Actually let hartreset be set. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=def8b3e05d754c8115deb0c8b8c91dc4e33975fd;p=riscv-isa-sim.git Actually let hartreset be set. --- diff --git a/riscv/debug_module.cc b/riscv/debug_module.cc index 8d73f07..985cbbd 100644 --- a/riscv/debug_module.cc +++ b/riscv/debug_module.cc @@ -447,6 +447,7 @@ bool debug_module_t::dmi_write(unsigned address, uint32_t value) if (dmcontrol.dmactive) { dmcontrol.haltreq = get_field(value, DMI_DMCONTROL_HALTREQ); dmcontrol.resumereq = get_field(value, DMI_DMCONTROL_RESUMEREQ); + dmcontrol.hartreset = get_field(value, DMI_DMCONTROL_HARTRESET); dmcontrol.ndmreset = get_field(value, DMI_DMCONTROL_NDMRESET); dmcontrol.hartsel = get_field(value, DMI_DMCONTROL_HARTSEL); } else {