27 lines
547 B
C++
27 lines
547 B
C++
/*
|
|
* PrechargeChecker.cpp
|
|
*
|
|
* Created on: Mar 13, 2014
|
|
* Author: jonny
|
|
*/
|
|
|
|
#include <core/scheduling/checker/PrechargeChecker.h>
|
|
|
|
namespace controller {
|
|
|
|
void PrechargeChecker::check(ScheduledCommand& command) const
|
|
{
|
|
}
|
|
|
|
sc_time PrechargeChecker::getExecutionTime(const tlm::tlm_generic_payload& transaction,
|
|
Command command) const
|
|
{
|
|
assert(command == Precharge || command == PrechargeAll);
|
|
return config.Timings.tRP;
|
|
}
|
|
void PrechargeChecker::cb_IInternalScheduler(const ScheduledCommand& command)
|
|
{
|
|
}
|
|
|
|
} /* namespace controller */
|