Browse Source

fixes compile bug for not being able to find std::logic_error

confprec
Scott Beamer 13 years ago
parent
commit
548315acd9
  1. 1
      riscv/processor.cc

1
riscv/processor.cc

@ -12,6 +12,7 @@
#include <iostream>
#include <assert.h>
#include <limits.h>
#include <stdexcept>
processor_t::processor_t(sim_t* _sim, mmu_t* _mmu, uint32_t _id)
: sim(_sim), mmu(_mmu), ext(NULL), id(_id), opcode_bits(0)

Loading…
Cancel
Save