Browse Source

Fix spike-dasm. (#184)

It had been broken by 90bafe660b.
pull/185/head
Tim Newsome 9 years ago
committed by Andrew Waterman
parent
commit
0020b3b924
  1. 3
      riscv/processor.cc

3
riscv/processor.cc

@ -155,7 +155,8 @@ void processor_t::reset()
if (ext)
ext->reset(); // reset the extension
sim->proc_reset(id);
if (sim)
sim->proc_reset(id);
}
// Count number of contiguous 0 bits starting from the LSB.

Loading…
Cancel
Save