summaryrefslogtreecommitdiff
path: root/sim/system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sim/system.cc')
-rw-r--r--sim/system.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/sim/system.cc b/sim/system.cc
index fd80e23c3..e1e293c90 100644
--- a/sim/system.cc
+++ b/sim/system.cc
@@ -37,9 +37,11 @@ vector<System *> System::systemList;
int System::numSystemsRunning = 0;
System::System(const std::string _name,
+ const int _init_param,
MemoryController *_memCtrl,
PhysicalMemory *_physmem)
: SimObject(_name),
+ init_param(_init_param),
memCtrl(_memCtrl),
physmem(_physmem)
{