This commit is contained in:
robert
2014-04-10 01:06:07 +02:00
8 changed files with 55 additions and 17 deletions

View File

@@ -61,7 +61,10 @@ Simulation::Simulation(sc_module_name name, string pathToResources, string trace
whiteList.push_back(ControllerCore::senderName);
whiteList.push_back(PowerDownManager::senderName);
}
DebugManager::getInstance().addToWhiteList(whiteList);
auto& dbg = DebugManager::getInstance();
dbg.addToWhiteList(whiteList);
dbg.setDebugFile(traceName + ".txt");
}
Simulation::~Simulation()