30 lines
425 B
C++
30 lines
425 B
C++
/*
|
|
* controller.cpp
|
|
*
|
|
* Created on: Mar 5, 2014
|
|
* Author: jonny
|
|
*/
|
|
|
|
#include "Controller.h"
|
|
|
|
namespace controller {
|
|
|
|
/*Controller::Controller()
|
|
{
|
|
//create command scheduler
|
|
}
|
|
|
|
Controller::~Controller()
|
|
{
|
|
//delete command scheduler
|
|
}*/
|
|
|
|
bool Controller::schedule(sc_time currentTime,
|
|
tlm::tlm_generic_payload* externalTransaction)
|
|
{
|
|
bus.cleanUpPendingBusCommands(currentTime);
|
|
}
|
|
|
|
} /* namespace controller */
|
|
|