summaryrefslogtreecommitdiff
path: root/src/sim/system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/system.cc')
-rw-r--r--src/sim/system.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sim/system.cc b/src/sim/system.cc
index e59c40477..368eb5419 100644
--- a/src/sim/system.cc
+++ b/src/sim/system.cc
@@ -349,10 +349,8 @@ void
System::initState()
{
if (FullSystem) {
- for (auto *tc: threadContexts) {
+ for (auto *tc: threadContexts)
TheISA::initCPU(tc, tc->contextId());
- TheISA::startupCPU(tc, tc->contextId());
- }
// Moved from the constructor to here since it relies on the
// address map being resolved in the interconnect
/**