diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/mips/system.cc | 1 | ||||
-rw-r--r-- | src/arch/mips/system.hh | 4 | ||||
-rw-r--r-- | src/arch/riscv/system.cc | 1 | ||||
-rw-r--r-- | src/arch/riscv/system.hh | 4 |
4 files changed, 0 insertions, 10 deletions
diff --git a/src/arch/mips/system.cc b/src/arch/mips/system.cc index 815674702..9967aa82c 100644 --- a/src/arch/mips/system.cc +++ b/src/arch/mips/system.cc @@ -34,7 +34,6 @@ #include "arch/mips/system.hh" #include "arch/vtophys.hh" -#include "base/loader/hex_file.hh" #include "base/loader/object_file.hh" #include "base/loader/symtab.hh" #include "base/trace.hh" diff --git a/src/arch/mips/system.hh b/src/arch/mips/system.hh index 6b74ac1e5..eb28b3b2f 100644 --- a/src/arch/mips/system.hh +++ b/src/arch/mips/system.hh @@ -37,7 +37,6 @@ #include <string> #include <vector> -#include "base/loader/hex_file.hh" #include "base/loader/symtab.hh" #include "cpu/pc_event.hh" #include "kern/system_events.hh" @@ -67,9 +66,6 @@ class MipsSystem : public System /** Object pointer for the console code */ ObjectFile *console; - /** Used by some Bare Iron Configurations */ - HexFile *hexFile; - #ifndef NDEBUG /** Event to halt the simulator if the console calls panic() */ BreakPCEvent *consolePanicEvent; diff --git a/src/arch/riscv/system.cc b/src/arch/riscv/system.cc index fbfd9d2f5..88d6251cc 100644 --- a/src/arch/riscv/system.cc +++ b/src/arch/riscv/system.cc @@ -35,7 +35,6 @@ #include "arch/riscv/system.hh" #include "arch/vtophys.hh" -#include "base/loader/hex_file.hh" #include "base/loader/object_file.hh" #include "base/loader/symtab.hh" #include "base/trace.hh" diff --git a/src/arch/riscv/system.hh b/src/arch/riscv/system.hh index 85b8d6a4b..7bff5cd45 100644 --- a/src/arch/riscv/system.hh +++ b/src/arch/riscv/system.hh @@ -38,7 +38,6 @@ #include <string> #include <vector> -#include "base/loader/hex_file.hh" #include "base/loader/symtab.hh" #include "cpu/pc_event.hh" #include "kern/system_events.hh" @@ -80,9 +79,6 @@ class RiscvSystem : public System /** Object pointer for the console code */ ObjectFile *console; - /** Used by some Bare Iron Configurations */ - HexFile *hexFile; - #ifndef NDEBUG /** Event to halt the simulator if the console calls panic() */ BreakPCEvent *consolePanicEvent; |