aboutsummaryrefslogtreecommitdiff
path: root/riscv/mmu.cc
diff options
context:
space:
mode:
authorAndy Wright <acwright@mit.edu>2018-05-31 13:53:12 -0400
committerAndrew Waterman <aswaterman@gmail.com>2018-05-31 10:53:12 -0700
commitd6fcfdebf6a893bf37670fd67203d18653df4a0e (patch)
treef4b65db4f03545a10815ec021a39b8aee64f8ffc /riscv/mmu.cc
parent19efe7d1121ab0e1a3014a1554e7340fa958c13f (diff)
downloadspike-d6fcfdebf6a893bf37670fd67203d18653df4a0e.zip
spike-d6fcfdebf6a893bf37670fd67203d18653df4a0e.tar.gz
spike-d6fcfdebf6a893bf37670fd67203d18653df4a0e.tar.bz2
Put simif_t declaration in its own file. (#209)
By separating the simif_t declaration from the sim_t declaration, the simif_t declaration no longer depends on fesvr header files. This simplifies compilation of custom sim class implementations that don't depend on fesvr.
Diffstat (limited to 'riscv/mmu.cc')
-rw-r--r--riscv/mmu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/mmu.cc b/riscv/mmu.cc
index e954e5a..3a0bd39 100644
--- a/riscv/mmu.cc
+++ b/riscv/mmu.cc
@@ -1,7 +1,7 @@
// See LICENSE for license details.
#include "mmu.h"
-#include "sim.h"
+#include "simif.h"
#include "processor.h"
mmu_t::mmu_t(simif_t* sim, processor_t* proc)