Files
DRAMSys/DRAM/dram/core/scheduling/checker/ReadChecker.cpp
2014-03-15 18:31:16 +01:00

28 lines
513 B
C++

/*
* ReadChecker.cpp
*
* Created on: Mar 13, 2014
* Author: jonny
*/
#include <core/scheduling/checker/ReadChecker.h>
namespace controller {
void ReadChecker::check(ScheduledCommand& command) const
{
}
sc_time ReadChecker::getExecutionTime(const tlm::tlm_generic_payload& transaction,
Command command) const
{
assert(command == Read || command == ReadA);
return config.Timings.clk*8;
}
void ReadChecker::cb_IInternalScheduler(const ScheduledCommand& command)
{
}
} /* namespace controller */