corrected two act window

This commit is contained in:
robert
2014-03-31 12:05:05 +02:00
parent 9f97e77db4
commit e930002e5c
7 changed files with 222 additions and 169 deletions

View File

@@ -24,6 +24,7 @@
#include "../core/Controller.h"
#include "../scheduler/Scheduler.h"
#include "../scheduler/Fifo.h"
#include "../scheduler/Fr_Fcfs.h"
using namespace std;
using namespace tlm;
@@ -44,7 +45,7 @@ public:
&ControllerWrapper::controllerPEQCallback), recorder(recorder), debugManager(DebugManager::getInstance())
{
controller = new Controller(*this, recorder);
scheduler = new Fifo(controller->getBankStates());
scheduler = new FR_FCFS(controller->getBankStates());
inputBufferDelay = controller->config.Timings.clk;
iSocket.register_nb_transport_bw(this, &ControllerWrapper::nb_transport_bw);
tSocket.register_nb_transport_fw(this, &ControllerWrapper::nb_transport_fw);