From 0020b3b924417412200b4ce7eb423b4213443b02 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Mon, 19 Mar 2018 13:10:06 -0700 Subject: [PATCH 1/1] Fix spike-dasm. (#184) It had been broken by 90bafe660b323250338fd564bb9ab4316576d59b. --- riscv/processor.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/riscv/processor.cc b/riscv/processor.cc index 5a57c28..7a5df90 100644 --- a/riscv/processor.cc +++ b/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. -- 2.30.2