summaryrefslogtreecommitdiff
path: root/src/arch/arm/system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/system.cc')
-rw-r--r--src/arch/arm/system.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/arch/arm/system.cc b/src/arch/arm/system.cc
index 398aa408c..eebb220d8 100644
--- a/src/arch/arm/system.cc
+++ b/src/arch/arm/system.cc
@@ -244,8 +244,26 @@ ArmSystem::haveLargeAsid64(ThreadContext *tc)
{
return dynamic_cast<ArmSystem *>(tc->getSystemPtr())->haveLargeAsid64();
}
+
ArmSystem *
ArmSystemParams::create()
{
return new ArmSystem(this);
}
+
+void
+GenericArmSystem::initState()
+{
+ // Moved from the constructor to here since it relies on the
+ // address map being resolved in the interconnect
+
+ // Call the initialisation of the super class
+ ArmSystem::initState();
+}
+
+GenericArmSystem *
+GenericArmSystemParams::create()
+{
+
+ return new GenericArmSystem(this);
+}